mirror of
https://github.com/NixOS/nix.git
synced 2024-11-21 22:32:26 +00:00
9 lines
186 B
Bash
Executable File
9 lines
186 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source common.sh
|
|
|
|
drv="$(nix-instantiate simple.nix)"
|
|
cat "$drv"
|
|
out="$(./test-libstoreconsumer/test-libstoreconsumer "$drv")"
|
|
grep -F "Hello World!" < "$out/hello"
|