Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / cucumber / default.nix
bloba7da4ab7d046761ff4ea245cf197cc0e21d8d80e
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "cucumber";
5   gemdir = ./.;
6   exes = [ "cucumber" ];
8   passthru.updateScript = bundlerUpdateScript "cucumber";
10   meta = with lib; {
11     description = "A tool for executable specifications";
12     homepage = "https://cucumber.io/";
13     changelog = "https://github.com/cucumber/cucumber-ruby/blob/main/CHANGELOG.md";
14     license = licenses.mit;
15     mainProgram = "cucumber";
16     maintainers = with maintainers; [ manveru nicknovitski anthonyroussel ];
17     platforms = platforms.unix;
18   };