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
commit d834a4a4fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;