mirror of
https://github.com/NixOS/nix
synced 2025-07-07 01:51:47 +02:00
* I love test sets.
This commit is contained in:
parent
8b9697e575
commit
96c3d8a615
3 changed files with 21 additions and 18 deletions
|
@ -6,21 +6,22 @@ echo "store expr is $storeExpr"
|
|||
outPath=$($TOP/src/nix-store/nix-store -qvvvvv "$storeExpr")
|
||||
echo "output path is $outPath"
|
||||
|
||||
# Instantiate the substitute program.
|
||||
subExpr=$($TOP/src/nix-instantiate/nix-instantiate substituter.nix)
|
||||
echo "store expr is $subExpr"
|
||||
# Build the substitute program.
|
||||
subProgram=$($TOP/src/nix-store/nix-store -qnf \
|
||||
$($TOP/src/nix-instantiate/nix-instantiate substituter.nix))/substituter
|
||||
echo "substitute program is $subProgram"
|
||||
|
||||
regSub() {
|
||||
(echo $1 && echo $2 && echo "/substituter" && echo 3 && echo $outPath && echo Hallo && echo Wereld) | $TOP/src/nix-store/nix-store --substitute
|
||||
(echo $1 && echo $2 && echo 3 && echo $outPath && echo Hallo && echo Wereld) | $TOP/src/nix-store/nix-store --substitute
|
||||
}
|
||||
|
||||
# Register a fake successor, and a substitute for it.
|
||||
suc=$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-s.store
|
||||
regSub $suc $subExpr
|
||||
regSub $suc $subProgram
|
||||
$TOP/src/nix-store/nix-store --successor $storeExpr $suc
|
||||
|
||||
# Register a substitute for the output path.
|
||||
regSub $outPath $subExpr
|
||||
regSub $outPath $subProgram
|
||||
|
||||
|
||||
$TOP/src/nix-store/nix-store -rvvvvv "$storeExpr"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue