18 lines
401 B
Nix
18 lines
401 B
Nix
{ 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;
|
|
};
|
|
}
|