about summary refs log tree commit diff
path: root/pkgs/tools/misc/lolcat/default.nix
blob: 5b9466426bd9e5e23e8aca6b18a56e4281a85f9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, bundlerApp }:

bundlerApp {
  pname = "lolcat";
  gemdir = ./.;
  exes = [ "lolcat" ];

  meta = with lib; {
    description = "A rainbow version of cat";
    homepage    = https://github.com/busyloop/lolcat;
    license     = licenses.bsd3;
    maintainers = with maintainers; [ StillerHarpo manveru ];
  };
}