mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
20 lines
553 B
Nix
20 lines
553 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "cucumber";
|
|
gemdir = ./.;
|
|
exes = [ "cucumber" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "cucumber";
|
|
|
|
meta = with lib; {
|
|
description = "Tool for executable specifications";
|
|
homepage = "https://cucumber.io/";
|
|
changelog = "https://github.com/cucumber/cucumber-ruby/blob/main/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
mainProgram = "cucumber";
|
|
maintainers = with maintainers; [ manveru nicknovitski anthonyroussel ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|