We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9895a0e + 31395c7 commit c596c2fCopy full SHA for c596c2f
pkgs/tools/package-management/nix/common-meson.nix
@@ -274,6 +274,10 @@ stdenv.mkDerivation (finalAttrs: {
274
license = licenses.lgpl21Plus;
275
inherit maintainers teams;
276
platforms = platforms.unix;
277
+ # Gets stuck in functional-tests in cross-trunk jobset and doesn't timeout
278
+ # https://hydra.nixos.org/build/298175022
279
+ # probably https://github.com/NixOS/nix/issues/13042
280
+ broken = stdenv.hostPlatform.system == "i686-linux" && stdenv.buildPlatform != stdenv.hostPlatform;
281
outputsToInstall = [ "out" ] ++ optional enableDocumentation "man";
282
mainProgram = "nix";
283
};
0 commit comments