nixpkgs/pkgs/tools/misc/lolcat/default.nix

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

18 lines
439 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2018-01-12 19:03:31 +00:00
bundlerApp {
2018-01-12 19:03:31 +00:00
pname = "lolcat";
2016-10-03 09:11:31 +00:00
gemdir = ./.;
exes = [ "lolcat" ];
passthru.updateScript = bundlerUpdateScript "lolcat";
meta = with lib; {
description = "A rainbow version of cat";
homepage = "https://github.com/busyloop/lolcat";
2018-01-12 19:03:31 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ StillerHarpo manveru nicknovitski ];
2023-11-27 01:17:53 +00:00
mainProgram = "lolcat";
};
}