Merge pull request #185776 from tobim/pkgs/re2-static
pkgsStatic.re2: fix build
This commit is contained in:
commit
9d5898afcf
1 changed files with 2 additions and 2 deletions
|
@ -36,12 +36,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
preCheck = "patchShebangs runtests";
|
preCheck = "patchShebangs runtests";
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
checkTarget = "test";
|
checkTarget = if stdenv.hostPlatform.isStatic then "static-test" else "test";
|
||||||
|
|
||||||
installTargets = lib.optionals stdenv.hostPlatform.isStatic [ "static-install" ];
|
installTargets = lib.optionals stdenv.hostPlatform.isStatic [ "static-install" ];
|
||||||
|
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
installCheckTarget = "testinstall";
|
installCheckTarget = if stdenv.hostPlatform.isStatic then "static-testinstall" else "testinstall";
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = nix-update-script {
|
updateScript = nix-update-script {
|
||||||
|
|
Loading…
Reference in a new issue