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