jekyll: 3.0.1 -> 3.4.1

This commit is contained in:
Dmitry Kalinkin
2017-03-03 20:08:53 -05:00
parent 83462da296
commit 171130e09a
3 changed files with 155 additions and 122 deletions
+6 -4
View File
@@ -1,11 +1,13 @@
{ stdenv, lib, bundlerEnv, ruby_2_2, curl }:
{ stdenv, lib, bundlerEnv, ruby }:
bundlerEnv rec {
name = "jekyll-${version}";
version = "3.0.1";
ruby = ruby_2_2;
gemdir = ./.;
version = (import gemset).jekyll.version;
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
meta = with lib; {
description = "Simple, blog aware, static site generator";