python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / nix / info / multiuser.nix
blob827d529876733f2760d4df8efdf978d6ce758270
1 let
2   pkgs = import <nixpkgs> {};
3 in pkgs.runCommand "diagnostics-multiuser"
4   {  }
5   ''
6     set -x
7     # no cache: ${toString builtins.currentTime}
8     # For reproducibility, nix always uses nixbld group:
9     # https://github.com/NixOS/nix/blob/1dd29d7aebae706f3e90a18bbfae727f2ed03c70/src/libstore/build.cc#L1896-L1908
10     test "$(groups)" == "nixbld"
11     touch $out
12   ''