2019-04-30 16:18:52 +02:00
|
|
|
{ lib, bundlerApp }:
|
2017-08-03 06:55:55 +02:00
|
|
|
|
2019-04-30 16:18:52 +02:00
|
|
|
bundlerApp {
|
|
|
|
pname = "cucumber";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "cucumber" ];
|
2017-08-03 06:55:55 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A tool for executable specifications";
|
|
|
|
homepage = https://cucumber.io/;
|
|
|
|
license = with licenses; mit;
|
2019-04-30 16:18:52 +02:00
|
|
|
maintainers = with maintainers; [ manveru ];
|
2017-08-03 06:55:55 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|