1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-05 16:36:56 +00:00
flake-parts/template/package/hello/test.nix

13 lines
159 B
Nix
Raw Normal View History

2023-10-03 16:05:44 +02:00
{ hello, runCommand }:
runCommand "test-hello"
{
inherit hello;
} ''
(
set -x
[[ "Hello world" == "$(${hello}/bin/hello)" ]]
)
touch $out
''