blob: f7237f5ecc8f83bebfe56b5ff199d9e5232873ea (
plain)
1
2
3
4
5
6
7
8
9
|
let
pkgs = import <nixpkgs> { };
in
pkgs.runCommand "diagnostics-sandbox" { } ''
set -x
# no cache: ${toString builtins.currentTime}
test -d "$(dirname "$out")/../var/nix"
touch $out
''
|