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

17 lines
371 B
Nix
Raw Normal View History

{ stdenv, lib, bundlerEnv, gpgme, ruby, ncurses, writeText, zlib, xapian
, pkgconfig, which }:
bundlerEnv {
inherit ruby;
2016-10-03 09:11:31 +00:00
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 ];
};
}