pkgsStatic.re2: fix build

main
Tobias Mayer 2 years ago
parent 65f39b913d
commit 3c2b21ccf8
  1. 4
      pkgs/development/libraries/re2/default.nix

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

Loading…
Cancel
Save