summaryrefslogtreecommitdiff
path: root/pkgs/tools/misc/lolcat/default.nix
blob: 21377d7bfa4aa8fdde1eae5f19f9d15414564758 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, lib, bundlerEnv, gpgme, ruby, ncurses, writeText, zlib, xapian
, pkgconfig, which }:

bundlerEnv {
  inherit ruby;

  pname = "lolcat";
  gemdir = ./.;

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