17 lines
411 B
Nix
17 lines
411 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "lolcat";
|
|
gemdir = ./.;
|
|
exes = [ "lolcat" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "lolcat";
|
|
|
|
meta = with lib; {
|
|
description = "A rainbow version of cat";
|
|
homepage = "https://github.com/busyloop/lolcat";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ StillerHarpo manveru nicknovitski ];
|
|
};
|
|
}
|