Merge pull request #96580 from leungbk/emacs-orgit-forge

emacsPackages.orgit-forge: override build inputs to include Git
This commit is contained in:
adisbladis 2020-08-29 10:24:40 +02:00 committed by GitHub
commit 4369b94a82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -531,6 +531,12 @@ let
(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
php-auto-yasnippets = super.php-auto-yasnippets.overrideAttrs (attrs: {
HOME = "/tmp";