summary refs log tree commit diff
path: root/pkgs/tools/misc/lolcat/default.nix
blob: 827484e885fdef47a41ea20bf70087c4f3f230da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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 ];
  };
}