2016-01-07 19:32:39 -08:00
|
|
|
{ stdenv, lib, bundlerEnv, ruby_2_2, curl }:
|
2015-05-16 10:26:07 -07:00
|
|
|
|
2016-01-07 19:32:39 -08:00
|
|
|
bundlerEnv rec {
|
|
|
|
name = "jekyll-${version}";
|
|
|
|
version = "3.0.1";
|
2015-05-16 10:26:07 -07:00
|
|
|
|
2016-01-07 19:32:39 -08:00
|
|
|
ruby = ruby_2_2;
|
2017-01-17 15:28:26 -08:00
|
|
|
gemdir = ./.;
|
2015-05-16 10:26:07 -07:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Simple, blog aware, static site generator";
|
|
|
|
homepage = http://jekyllrb.com/;
|
2015-05-28 10:20:29 -07:00
|
|
|
license = licenses.mit;
|
2015-05-16 11:11:41 -07:00
|
|
|
maintainers = with maintainers; [ pesterhazy ];
|
2015-05-16 10:26:07 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|