aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sandbox/default.nix
blob: fa4984441417ee59adc707bb3574c038d22604e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  writeShellScript,
  callPackage,

  version,
}:
writeShellScript "check-sandbox" ''
  set -e
  ${callPackage ./mount.nix { inherit version; }}/bin/test

  touch /tmp/sandbox-ok
''