summary refs log tree commit diff
path: root/pkgs/tools/nix/info/relaxedsandbox.nix
blob: 625a6ecc39e07b5caf99207e9d8a294bb3b478e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
let
  pkgs = import <nixpkgs> {};
in pkgs.runCommand "diagnostics-sandbox"
  {
    __noChroot = true;
  }
  ''
    set -x
    # no cache: ${toString builtins.currentTime}
    test -d "$(dirname "$out")/../var/nix"
    touch $out
  ''