about summary refs log tree commit diff
path: root/pkgs/by-name/cu/cue/tests/001-all-good.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/cu/cue/tests/001-all-good.nix')
-rw-r--r--pkgs/by-name/cu/cue/tests/001-all-good.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/by-name/cu/cue/tests/001-all-good.nix b/pkgs/by-name/cu/cue/tests/001-all-good.nix
new file mode 100644
index 0000000000000..d9919cd7fee45
--- /dev/null
+++ b/pkgs/by-name/cu/cue/tests/001-all-good.nix
@@ -0,0 +1,11 @@
+{ lib
+, cue
+, runCommand
+}:
+
+runCommand "cue-test-001-all-good-${cue.version}" {
+  nativeBuildInputs = [ cue ];
+  meta.timeout = 10;
+} ''
+    cue eval - <<<'a: "all good"' > $out
+  ''