bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
17 lines
437 B
Nix
17 lines
437 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
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";
|
|
};
|
|
}
|