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