1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00
nixpkgs/pkgs/applications/misc/jekyll/default.nix

20 lines
472 B
Nix
Raw Normal View History

2017-03-04 01:08:53 +00:00
{ stdenv, lib, bundlerEnv, ruby }:
2015-05-16 18:26:07 +01:00
2016-01-08 03:32:39 +00:00
bundlerEnv rec {
name = "jekyll-${version}";
2015-05-16 18:26:07 +01:00
2017-03-04 01:08:53 +00:00
version = (import gemset).jekyll.version;
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
2015-05-16 18:26:07 +01:00
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;
};
}