nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "cucumber";
5 gemdir = ./.;
6 exes = [ "cucumber" ];
7
8 passthru.updateScript = bundlerUpdateScript "cucumber";
9
10 meta = with lib; {
11 description = "A tool for executable specifications";
12 homepage = https://cucumber.io/;
13 license = with licenses; mit;
14 maintainers = with maintainers; [ manveru nicknovitski ];
15 platforms = platforms.unix;
16 };
17}