python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / nix / info / relaxedsandbox.nix
blob625a6ecc39e07b5caf99207e9d8a294bb3b478e5
1 let
2   pkgs = import <nixpkgs> {};
3 in pkgs.runCommand "diagnostics-sandbox"
4   {
5     __noChroot = true;
6   }
7   ''
8     set -x
9     # no cache: ${toString builtins.currentTime}
10     test -d "$(dirname "$out")/../var/nix"
11     touch $out
12   ''