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

18 lines
401 B
Nix
Raw Normal View History

2016-01-08 04:32:39 +01:00
{ stdenv, lib, bundlerEnv, ruby_2_2, curl }:
2015-05-16 19:26:07 +02:00
2016-01-08 04:32:39 +01:00
bundlerEnv rec {
name = "jekyll-${version}";
version = "3.0.1";
2015-05-16 19:26:07 +02:00
2016-01-08 04:32:39 +01:00
ruby = ruby_2_2;
2017-01-18 00:28:26 +01:00
gemdir = ./.;
2015-05-16 19:26:07 +02:00
meta = with lib; {
description = "Simple, blog aware, static site generator";
homepage = http://jekyllrb.com/;
license = licenses.mit;
2015-05-16 20:11:41 +02:00
maintainers = with maintainers; [ pesterhazy ];
2015-05-16 19:26:07 +02:00
platforms = platforms.unix;
};
}