mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #56069 from delroth/git-diff-highlight
git: build diff-highlight if Perl support is enabled
This commit is contained in:
commit
eeffb474bd
1 changed files with 3 additions and 1 deletions
|
@ -96,7 +96,9 @@ stdenv.mkDerivation {
|
|||
|
||||
postBuild = ''
|
||||
make -C contrib/subtree
|
||||
'' + (stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
'' + (stdenv.lib.optionalString perlSupport ''
|
||||
make -C contrib/diff-highlight
|
||||
'') + (stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
make -C contrib/credential/osxkeychain
|
||||
'') + (stdenv.lib.optionalString withLibsecret ''
|
||||
make -C contrib/credential/libsecret
|
||||
|
|
Loading…
Reference in a new issue