pkgsStatic.valgrind: mark broken
Static-only Valgrind builds aren't supported, because it always tries to build shared preload libraries. Marking it broken like this will fix packages like pkgsStatic.libdrm that only use Valgrind if it's available.
This commit is contained in:
parent
d3f2137f5c
commit
407e981f7c
1 changed files with 1 additions and 1 deletions
|
@ -87,6 +87,6 @@ stdenv.mkDerivation rec {
|
|||
"riscv32-linux" "riscv64-linux"
|
||||
"alpha-linux"
|
||||
];
|
||||
broken = stdenv.isDarwin; # https://hydra.nixos.org/build/128521440/nixlog/2
|
||||
broken = stdenv.isDarwin || stdenv.hostPlatform.isStatic; # https://hydra.nixos.org/build/128521440/nixlog/2
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue