1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/cucumber/default.nix
2019-07-22 12:02:47 +00:00

18 lines
439 B
Nix

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