nixpkgs/pkgs/by-name/cu/cue/tests/001-all-good.nix
2024-03-29 15:49:50 -03:00

12 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
''