2024-05-28 16:43:04 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2023-06-14 20:57:42 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
drv="$(nix-instantiate simple.nix)"
|
|
|
|
cat "$drv"
|
|
|
|
out="$(./test-libstoreconsumer/test-libstoreconsumer "$drv")"
|
2024-08-01 22:10:08 +00:00
|
|
|
grep -F "Hello World!" < "$out/hello"
|