f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
10 lines
178 B
Nix
10 lines
178 B
Nix
{ cue
|
|
, runCommand
|
|
}:
|
|
|
|
runCommand "cue-test-001-all-good-${cue.version}" {
|
|
nativeBuildInputs = [ cue ];
|
|
meta.timeout = 10;
|
|
} ''
|
|
cue eval - <<<'a: "all good"' > $out
|
|
''
|