1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00

emacs-evil-magit: needs git

This commit is contained in:
Peter Hoeg 2018-08-02 13:46:07 +08:00
parent d172d404e9
commit 66d16a5409

View file

@ -75,6 +75,12 @@ self:
inherit (self.melpaPackages) ess ctable popup;
};
evil-magit = super.evil-magit.overrideAttrs (attrs: {
# searches for Git at build time
nativeBuildInputs =
(attrs.nativeBuildInputs or []) ++ [ external.git ];
});
# missing OCaml
flycheck-ocaml = markBroken super.flycheck-ocaml;