mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 05:56:15 +02:00
a29c8ac51c
expression, we should invalidate it and go back to the derivation for which it is a successor.
14 lines
433 B
Bash
14 lines
433 B
Bash
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate fall-back.nix)
|
|
|
|
echo "store expr is $storeExpr"
|
|
|
|
# Register a non-existant successor.
|
|
suc=$NIX_STORE_DIR/deadbeafdeadbeafdeadbeafdeadbeaf-s.store
|
|
$TOP/src/nix-store/nix-store --successor $storeExpr $suc
|
|
|
|
outPath=$($TOP/src/nix-store/nix-store -qnfvvvvv "$storeExpr")
|
|
|
|
echo "output path is $outPath"
|
|
|
|
text=$(cat "$outPath"/hello)
|
|
if test "$text" != "Hello World!"; then exit 1; fi
|