nixpkgs/pkgs/applications/misc/jekyll/default.nix
Graham Christensen 4419a311f7
Revert "jekyll: Update the dependencies"
This reverts commit f14b6ea81f.

This commit added IFD to Nixpkgs, where
Nixpkgs should be IFD-free. (Import
from derivation.)
2018-02-19 13:55:48 -05:00

19 lines
447 B
Nix

{ stdenv, lib, bundlerEnv, ruby }:
bundlerEnv rec {
name = pname + "-" + version;
pname = "jekyll";
version = (import ./gemset.nix).jekyll.version;
inherit ruby;
gemdir = ./.;
meta = with lib; {
description = "Simple, blog aware, static site generator";
homepage = https://jekyllrb.com/;
license = licenses.mit;
maintainers = with maintainers; [ primeos pesterhazy ];
platforms = platforms.unix;
};
}