jql: 8.0.0 -> 8.0.2 (#362884)
[NixPkgs.git] / pkgs / tools / nix / info / relaxedsandbox.nix
blob9d5d1ce7d0fac24eee9078129b9e56375795fe28
1 let
2   pkgs = import <nixpkgs> { };
3 in
4 pkgs.runCommand "diagnostics-sandbox"
5   {
6     __noChroot = true;
7   }
8   ''
9     set -x
10     # no cache: ${toString builtins.currentTime}
11     test -d "$(dirname "$out")/../var/nix"
12     touch $out
13   ''