about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/cucumber/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/tools/cucumber/default.nix')
-rw-r--r--nixpkgs/pkgs/development/tools/cucumber/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/tools/cucumber/default.nix b/nixpkgs/pkgs/development/tools/cucumber/default.nix
new file mode 100644
index 000000000000..4a3ed7395500
--- /dev/null
+++ b/nixpkgs/pkgs/development/tools/cucumber/default.nix
@@ -0,0 +1,15 @@
+{ lib, bundlerApp }:
+
+bundlerApp {
+  pname = "cucumber";
+  gemdir = ./.;
+  exes = [ "cucumber" ];
+
+  meta = with lib; {
+    description = "A tool for executable specifications";
+    homepage    = https://cucumber.io/;
+    license     = with licenses; mit;
+    maintainers = with maintainers; [ manveru ];
+    platforms   = platforms.unix;
+  };
+}