Created
June 29, 2017 06:13
-
-
Save infinisil/4a93de3ae1cb9ad9be2e1c02782ced55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/run/current-system/sw/bin/bash | |
| file=test.nix | |
| echo '(import <nixpkgs> {}).writeText "t" "hi"' > $file | |
| drv=$(nix-instantiate $file) | |
| out=$(nix-store -r $drv) | |
| cat $out | |
| nix-store --delete $out | |
| nix-store --delete $drv | |
| rm $file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment