1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

emacsPackages.magit-reviewboard: Add git input

The build is still failing for unrelated reasons.
This commit is contained in:
adisbladis 2020-04-24 11:20:28 +01:00
parent 8827608af7
commit f10c79e19e
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -236,6 +236,12 @@ env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../ -A emacsPac
(attrs.nativeBuildInputs or []) ++ [ external.git ];
});
magit-stgit = super.magit-stgit.overrideAttrs (attrs: {
# searches for Git at build time
nativeBuildInputs =
(attrs.nativeBuildInputs or []) ++ [ external.git ];
});
magit-annex = super.magit-annex.overrideAttrs (attrs: {
# searches for Git at build time
nativeBuildInputs =