summary refs log tree commit diff
path: root/pkgs/applications/misc/jekyll/default.nix
blob: 5e9505e9f3204fa82b37251860268abef8adde6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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     = licenses.mit;
    maintainers = with maintainers; [ pesterhazy ];
    platforms   = platforms.unix;
  };
}