emacs: fix egg dependency on git

This commit is contained in:
Peter Hoeg 2018-10-01 17:01:24 +08:00
parent 976edf17bc
commit 89b618771a

View file

@ -59,8 +59,11 @@ self:
inherit (self.melpaPackages) easy-kill;
};
# missing git
egg = markBroken super.egg;
egg = super.egg.overrideAttrs (attrs: {
# searches for Git at build time
nativeBuildInputs =
(attrs.nativeBuildInputs or []) ++ [ external.git ];
});
# upstream issue: missing file header
elmine = markBroken super.elmine;