Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
582 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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;
};
}