treemacs-magit: needs git at build time

This commit is contained in:
Olli Helenius 2019-04-14 11:30:26 +03:00
parent 94a8ca2194
commit 974f64f0c6

View File

@ -235,6 +235,12 @@ self:
# upstream issue: missing file header # upstream issue: missing file header
textmate = markBroken super.textmate; textmate = markBroken super.textmate;
treemacs-magit = super.treemacs-magit.overrideAttrs (attrs: {
# searches for Git at build time
nativeBuildInputs =
(attrs.nativeBuildInputs or []) ++ [ external.git ];
});
# missing OCaml # missing OCaml
utop = markBroken super.utop; utop = markBroken super.utop;