lol
at 23.11-beta 19 lines 555 B view raw
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 changelog = "https://github.com/cucumber/cucumber-ruby/blob/main/CHANGELOG.md"; 14 license = licenses.mit; 15 mainProgram = "cucumber"; 16 maintainers = with maintainers; [ manveru nicknovitski anthonyroussel ]; 17 platforms = platforms.unix; 18 }; 19}