summary refs log blame commit diff
path: root/pkgs/tools/misc/lolcat/default.nix
blob: 21355652d3e3ae3ac7fbcd0c0093a0632b009298 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                        
{ stdenv, lib, bundlerEnv, gpgme, ruby, ncurses, writeText, zlib, xapian
, pkgconfig, which }:

bundlerEnv {
  name = "lolcat-42.1.0";

  inherit ruby;
  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;
  gemset = ./gemset.nix;

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