nixpkgs/pkgs/development/tools/cucumber/default.nix
2019-04-30 17:49:30 +02:00

16 lines
346 B
Nix

{ lib, bundlerApp }:
bundlerApp {
pname = "cucumber";
gemdir = ./.;
exes = [ "cucumber" ];
meta = with lib; {
description = "A tool for executable specifications";
homepage = https://cucumber.io/;
license = with licenses; mit;
maintainers = with maintainers; [ manveru ];
platforms = platforms.unix;
};
}