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

19 lines
447 B
Nix
Raw Normal View History

{ stdenv, lib, bundlerEnv, ruby }:
2015-05-16 17:26:07 +00:00
2016-01-08 03:32:39 +00:00
bundlerEnv rec {
2018-02-19 16:22:25 +00:00
name = pname + "-" + version;
pname = "jekyll";
version = (import ./gemset.nix).jekyll.version;
2015-05-16 17:26:07 +00:00
2017-03-04 01:08:53 +00:00
inherit ruby;
gemdir = ./.;
2015-05-16 17:26:07 +00:00
meta = with lib; {
description = "Simple, blog aware, static site generator";
2018-02-19 16:22:25 +00:00
homepage = https://jekyllrb.com/;
license = licenses.mit;
2018-02-19 16:22:25 +00:00
maintainers = with maintainers; [ primeos pesterhazy ];
2015-05-16 17:26:07 +00:00
platforms = platforms.unix;
};
}