lol
at 23.11-beta 17 lines 476 B view raw
1{ lib, bundlerApp, bundlerUpdateScript }: 2 3bundlerApp { 4 pname = "cadre"; 5 gemdir = ./.; 6 exes = [ "cadre" ]; 7 8 passthru.updateScript = bundlerUpdateScript "cadre"; 9 10 meta = with lib; { 11 description = "Toolkit to add Ruby development - in-editor coverage, libnotify of test runs"; 12 homepage = "https://github.com/nyarly/cadre"; 13 license = licenses.mit; 14 maintainers = with maintainers; [ nyarly nicknovitski ]; 15 platforms = platforms.unix; 16 }; 17}