Files

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

27 lines
503 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
bundlerApp,
ruby_3_4,
bundlerUpdateScript,
}:
(bundlerApp.override { ruby = ruby_3_4; }) {
pname = "lolcat";
gemdir = ./.;
exes = [ "lolcat" ];
passthru.updateScript = bundlerUpdateScript "lolcat";
meta = with lib; {
description = "Rainbow version of cat";
homepage = "https://github.com/busyloop/lolcat";
license = licenses.bsd3;
maintainers = with maintainers; [
StillerHarpo
manveru
nicknovitski
];
mainProgram = "lolcat";
};
}