2019-07-22 12:02:47 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2017-08-03 04:55:55 +00:00
|
|
|
|
2019-04-30 14:18:52 +00:00
|
|
|
bundlerApp {
|
|
|
|
pname = "cucumber";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "cucumber" ];
|
2017-08-03 04:55:55 +00:00
|
|
|
|
2019-07-22 12:02:47 +00:00
|
|
|
passthru.updateScript = bundlerUpdateScript "cucumber";
|
|
|
|
|
2017-08-03 04:55:55 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Tool for executable specifications";
|
2023-10-24 18:27:19 +00:00
|
|
|
homepage = "https://cucumber.io/";
|
2023-10-24 18:27:35 +00:00
|
|
|
changelog = "https://github.com/cucumber/cucumber-ruby/blob/main/CHANGELOG.md";
|
2023-10-24 18:27:19 +00:00
|
|
|
license = licenses.mit;
|
2023-10-24 18:29:50 +00:00
|
|
|
mainProgram = "cucumber";
|
2023-10-24 18:27:50 +00:00
|
|
|
maintainers = with maintainers; [ manveru nicknovitski anthonyroussel ];
|
2023-10-24 18:27:19 +00:00
|
|
|
platforms = platforms.unix;
|
2017-08-03 04:55:55 +00:00
|
|
|
};
|
|
|
|
}
|