depot/third_party/nixpkgs/pkgs/by-name/cu/cue/tests/001-all-good.nix

12 lines
184 B
Nix
Raw Normal View History

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