159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
9 lines
196 B
Nix
9 lines
196 B
Nix
let
|
|
pkgs = import <nixpkgs> { };
|
|
in
|
|
pkgs.runCommand "diagnostics-sandbox" { } ''
|
|
set -x
|
|
# no cache: ${toString builtins.currentTime}
|
|
test -d "$(dirname "$out")/../var/nix"
|
|
touch $out
|
|
''
|