mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2025-03-05 16:36:56 +00:00
13 lines
159 B
Nix
13 lines
159 B
Nix
|
{ hello, runCommand }:
|
||
|
|
||
|
runCommand "test-hello"
|
||
|
{
|
||
|
inherit hello;
|
||
|
} ''
|
||
|
(
|
||
|
set -x
|
||
|
[[ "Hello world" == "$(${hello}/bin/hello)" ]]
|
||
|
)
|
||
|
touch $out
|
||
|
''
|