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

20 lines
468 B
Nix
Raw Normal View History

2018-01-12 19:03:31 +00:00
{ lib, bundlerEnv, ruby }:
bundlerEnv rec {
name = "${pname}-${version}";
pname = "lolcat";
version = (import ./gemset.nix).lolcat.version;
inherit ruby;
2016-10-03 09:11:31 +00:00
2018-01-12 19:03:31 +00:00
# expects Gemfile, Gemfile.lock and gemset.nix in the same directory
2016-10-03 09:11:31 +00:00
gemdir = ./.;
meta = with lib; {
description = "A rainbow version of cat";
homepage = https://github.com/busyloop/lolcat;
2018-01-12 19:03:31 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ StillerHarpo ];
};
}