summary refs log tree commit diff
path: root/pkgs/development/tools/cucumber/default.nix
blob: fdd77be07f7fc727d6123ce1b7c2c6ce33973c6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "cucumber";
  gemdir = ./.;
  exes = [ "cucumber" ];

  passthru.updateScript = bundlerUpdateScript "cucumber";

  meta = with lib; {
    description = "A tool for executable specifications";
    homepage    = "https://cucumber.io/";
    license     = with licenses; mit;
    maintainers = with maintainers; [ manveru nicknovitski ];
    platforms   = platforms.unix;
  };
}