587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
11 lines
184 B
Nix
11 lines
184 B
Nix
{ lib
|
|
, cue
|
|
, runCommand
|
|
}:
|
|
|
|
runCommand "cue-test-001-all-good-${cue.version}" {
|
|
nativeBuildInputs = [ cue ];
|
|
meta.timeout = 10;
|
|
} ''
|
|
cue eval - <<<'a: "all good"' > $out
|
|
''
|