nixpkgs/pkgs/tools/misc/lolcat/default.nix
2015-05-27 17:02:36 +02:00

19 lines
438 B
Nix

{ 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 ];
};
}