2018-01-12 19:03:31 +00:00
|
|
|
{ lib, bundlerEnv, ruby }:
|
|
|
|
|
|
|
|
bundlerEnv rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "lolcat";
|
|
|
|
version = (import ./gemset.nix).lolcat.version;
|
2015-05-27 15:01:53 +00:00
|
|
|
|
|
|
|
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 = ./.;
|
2015-05-27 15:01:53 +00:00
|
|
|
|
|
|
|
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 ];
|
2015-05-27 15:01:53 +00:00
|
|
|
};
|
|
|
|
}
|