emacsPackages.orgit-forge: override build inputs to include Git
This commit is contained in:
parent
a8b95d8b00
commit
bea26371b5
|
@ -531,6 +531,12 @@ let
|
||||||
(attrs.nativeBuildInputs or [ ]) ++ [ external.git ];
|
(attrs.nativeBuildInputs or [ ]) ++ [ external.git ];
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
orgit-forge = super.orgit-forge.overrideAttrs (attrs: {
|
||||||
|
# searches for Git at build time
|
||||||
|
nativeBuildInputs =
|
||||||
|
(attrs.nativeBuildInputs or [ ]) ++ [ external.git ];
|
||||||
|
});
|
||||||
|
|
||||||
# tries to write to $HOME
|
# tries to write to $HOME
|
||||||
php-auto-yasnippets = super.php-auto-yasnippets.overrideAttrs (attrs: {
|
php-auto-yasnippets = super.php-auto-yasnippets.overrideAttrs (attrs: {
|
||||||
HOME = "/tmp";
|
HOME = "/tmp";
|
||||||
|
|
Loading…
Reference in New Issue