nixpkgs/pkgs/tools/misc/lolcat/default.nix
2018-01-12 20:18:54 +01:00

20 lines
468 B
Nix

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