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