Add Jekyll

This commit is contained in:
Paulus Esterhazy
2015-05-16 19:45:46 +02:00
parent 1e7709458d
commit dd545e0fa4
5 changed files with 380 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{ stdenv, lib, bundlerEnv, ruby_2_1, curl }:
bundlerEnv {
name = "jekyll-2.5.3";
ruby = ruby_2_1;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
buildInputs = [ curl ];
meta = with lib; {
description = "Simple, blog aware, static site generator";
homepage = http://jekyllrb.com/;
license = with licenses; mit;
# maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}