mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
19 lines
447 B
Nix
19 lines
447 B
Nix
{ stdenv, lib, bundlerEnv, ruby }:
|
|
|
|
bundlerEnv rec {
|
|
name = pname + "-" + version;
|
|
pname = "jekyll";
|
|
version = (import ./gemset.nix).jekyll.version;
|
|
|
|
inherit ruby;
|
|
gemdir = ./.;
|
|
|
|
meta = with lib; {
|
|
description = "Simple, blog aware, static site generator";
|
|
homepage = https://jekyllrb.com/;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ primeos pesterhazy ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|