Merge pull request #185776 from tobim/pkgs/re2-static

pkgsStatic.re2: fix build
This commit is contained in:
Robert Scott
2022-08-09 22:32:20 +01:00
committed by GitHub
+2 -2
View File
@@ -36,12 +36,12 @@ stdenv.mkDerivation rec {
preCheck = "patchShebangs runtests";
doCheck = true;
checkTarget = "test";
checkTarget = if stdenv.hostPlatform.isStatic then "static-test" else "test";
installTargets = lib.optionals stdenv.hostPlatform.isStatic [ "static-install" ];
doInstallCheck = true;
installCheckTarget = "testinstall";
installCheckTarget = if stdenv.hostPlatform.isStatic then "static-testinstall" else "testinstall";
passthru = {
updateScript = nix-update-script {