nixpkgs/pkgs/development/tools/cucumber/default.nix

18 lines
441 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2017-08-03 04:55:55 +00:00
bundlerApp {
pname = "cucumber";
gemdir = ./.;
exes = [ "cucumber" ];
2017-08-03 04:55:55 +00:00
passthru.updateScript = bundlerUpdateScript "cucumber";
2017-08-03 04:55:55 +00:00
meta = with lib; {
description = "A tool for executable specifications";
homepage = "https://cucumber.io/";
2017-08-03 04:55:55 +00:00
license = with licenses; mit;
maintainers = with maintainers; [ manveru nicknovitski ];
2017-08-03 04:55:55 +00:00
platforms = platforms.unix;
};
}