about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/cu/cucumber/package.nix
blob: a7da4ab7d046761ff4ea245cf197cc0e21d8d80e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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/";
    changelog = "https://github.com/cucumber/cucumber-ruby/blob/main/CHANGELOG.md";
    license = licenses.mit;
    mainProgram = "cucumber";
    maintainers = with maintainers; [ manveru nicknovitski anthonyroussel ];
    platforms = platforms.unix;
  };
}