nixpkgs/pkgs/applications/misc/jekyll/default.nix

21 lines
459 B
Nix
Raw Normal View History

2015-05-16 18:26:07 +01:00
{ 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 = 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;
};
}