Revert "jekyll: Update the dependencies"

This reverts commit f14b6ea81f.

This commit added IFD to Nixpkgs, where
Nixpkgs should be IFD-free. (Import
from derivation.)
This commit is contained in:
Graham Christensen
2018-02-19 13:55:48 -05:00
parent bad8b21c28
commit 4419a311f7
8 changed files with 49 additions and 877 deletions
+3 -7
View File
@@ -1,16 +1,12 @@
{ stdenv, lib, bundlerEnv, ruby
, withOptionalDependencies ? false
}:
{ stdenv, lib, bundlerEnv, ruby }:
bundlerEnv rec {
name = pname + "-" + version;
pname = "jekyll";
version = (import "${gemdir}/gemset.nix").jekyll.version;
version = (import ./gemset.nix).jekyll.version;
inherit ruby;
gemdir = if withOptionalDependencies
then ./full
else ./basic;
gemdir = ./.;
meta = with lib; {
description = "Simple, blog aware, static site generator";