mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
20 lines
409 B
Bash
Executable file
20 lines
409 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source common.sh
|
|
|
|
TODO_NixOS # NixOS doesn't provide $NIX_STATE_DIR (and shouldn't)
|
|
|
|
clearStore
|
|
|
|
outPath=$(nix-build --no-out-link readfile-context.nix)
|
|
|
|
# Set a GC root.
|
|
ln -s $outPath "$NIX_STATE_DIR/gcroots/foo"
|
|
|
|
# Check that file exists.
|
|
[ "$(cat $(cat $outPath))" = "Hello World!" ]
|
|
|
|
nix-collect-garbage
|
|
|
|
# Check that file still exists.
|
|
[ "$(cat $(cat $outPath))" = "Hello World!" ]
|