about summary refs log tree commit diff
path: root/pkgs/development/tools/cucumber/default.nix
blob: 4a3ed73955002a1252dd451b5a6f52c905e5283c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
  };
}