2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2017-08-03 05:55:55 +01:00
|
|
|
|
2019-04-30 15:18:52 +01:00
|
|
|
bundlerApp {
|
|
|
|
pname = "cucumber";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "cucumber" ];
|
2017-08-03 05:55:55 +01:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "cucumber";
|
|
|
|
|
2017-08-03 05:55:55 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A tool for executable specifications";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://cucumber.io/";
|
2017-08-03 05:55:55 +01:00
|
|
|
license = with licenses; mit;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ manveru nicknovitski ];
|
2017-08-03 05:55:55 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|