Merge pull request #59451 from liff/emacs/treemacs-magit-fix

treemacs-magit: needs git at build time
This commit is contained in:
Silvan Mosberger
2019-08-01 15:25:22 +02:00
committed by GitHub

View File

@@ -233,6 +233,12 @@ self:
# upstream issue: missing file header
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
utop = markBroken super.utop;