mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
git: build diff-highlight if Perl support is enabled
Fixes #27671. git/git@0c977dbc81 made that script require an extra build step.
This commit is contained in:
parent
e20188f181
commit
ce15dafc7d
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