4419a311f7
This reverts commit f14b6ea81f1739a90c208fbbdd1ed6f948434693. This commit added IFD to Nixpkgs, where Nixpkgs should be IFD-free. (Import from derivation.)
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;
|
|
};
|
|
}
|