Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 503 B view raw
1{ 2 lib, 3 bundlerApp, 4 ruby_3_4, 5 bundlerUpdateScript, 6}: 7 8(bundlerApp.override { ruby = ruby_3_4; }) { 9 pname = "lolcat"; 10 gemdir = ./.; 11 exes = [ "lolcat" ]; 12 13 passthru.updateScript = bundlerUpdateScript "lolcat"; 14 15 meta = with lib; { 16 description = "Rainbow version of cat"; 17 homepage = "https://github.com/busyloop/lolcat"; 18 license = licenses.bsd3; 19 maintainers = with maintainers; [ 20 StillerHarpo 21 manveru 22 nicknovitski 23 ]; 24 mainProgram = "lolcat"; 25 }; 26}