pkgsStatic.re2: fix build

This commit is contained in:
Tobias Mayer 2022-08-09 14:48:44 +02:00
parent 65f39b913d
commit 3c2b21ccf8

View file

@ -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 {