mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-09 15:58:05 +02: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"
|