about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/cucumber/default.nix
blob: 15db6013debca220d3c261dc26f6384360089af8 (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;
  };
}