emacsPackagesNg.forge: Add git as build input

This commit is contained in:
adisbladis 2019-01-10 16:16:04 +00:00
parent 6232df2a1e
commit 2ac775a084
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5

View File

@ -89,6 +89,12 @@ self:
# Expects bash to be at /bin/bash
flycheck-rtags = markBroken super.flycheck-rtags;
forge = super.forge.overrideAttrs (attrs: {
# searches for Git at build time
nativeBuildInputs =
(attrs.nativeBuildInputs or []) ++ [ external.git ];
});
# build timeout
graphene = markBroken super.graphene;