emacs-magit-gitflow: git was missing

This commit is contained in:
Peter Hoeg 2018-08-02 13:47:12 +08:00
parent fe6313da30
commit 667938468b

View file

@ -143,6 +143,12 @@ self:
(attrs.nativeBuildInputs or []) ++ [ external.git ];
});
magit-gitflow = super.magit-gitflow.overrideAttrs (attrs: {
# searches for Git at build time
nativeBuildInputs =
(attrs.nativeBuildInputs or []) ++ [ external.git ];
});
# missing OCaml
merlin = markBroken super.merlin;