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

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

  touch /tmp/sandbox-ok
''