about summary refs log tree commit diff
path: root/pkgs/by-name/cu/cue/tests/001-all-good.nix
blob: d9919cd7fee45ccb9619e588cd3587040e1ee5f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ lib
, cue
, runCommand
}:

runCommand "cue-test-001-all-good-${cue.version}" {
  nativeBuildInputs = [ cue ];
  meta.timeout = 10;
} ''
    cue eval - <<<'a: "all good"' > $out
  ''