about summary refs log tree commit diff
path: root/pkgs/applications/misc/jekyll/default.nix
blob: b06a28513b820dd009d5a064562ab3aaf6840892 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, lib, bundlerEnv, ruby_2_2, curl }:

bundlerEnv rec {
  name = "jekyll-${version}";
  version = "3.0.1";

  ruby = ruby_2_2;
  gemdir = ./.;

  meta = with lib; {
    description = "Simple, blog aware, static site generator";
    homepage    =  http://jekyllrb.com/;
    license     = licenses.mit;
    maintainers = with maintainers; [ pesterhazy ];
    platforms   = platforms.unix;
  };
}