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