blog-static-flake/lib.nix

50 lines
1.4 KiB
Nix
Raw Normal View History

2022-03-27 18:47:07 -07:00
{ blog-source, blog-source-localized, pkgs, katex-html }:
2021-10-21 23:00:13 -07:00
with pkgs;
2020-04-06 16:51:17 -07:00
let
2020-09-02 17:25:52 -07:00
website = settings: stdenv.mkDerivation {
2021-10-23 00:51:13 -07:00
inherit (settings) src ssl host;
2020-09-02 17:25:52 -07:00
name = "blog-static";
2021-10-23 00:51:13 -07:00
version = settings.src.rev;
2020-09-02 17:25:52 -07:00
urlSub =
let
regexEscape = lib.escape [ "/" "(" ")" "[" "]" "+" "*" "\\" ];
in
2021-10-23 00:51:13 -07:00
with settings.replaceUrl; "s/${regexEscape from}/${regexEscape to}/g";
2020-09-02 17:25:52 -07:00
publicPath = settings.path;
extraFlags = (if settings.drafts then " -D " else "") + settings.extraFlags;
builder = ./build/builder.sh;
buildInputs = [
hugo katex-html
];
2020-09-02 17:25:52 -07:00
};
2021-10-23 00:51:13 -07:00
wrapHost = ssl: host: (if ssl then "https" else "http") + "://${host}";
2020-09-02 17:03:02 -07:00
in
2021-10-23 00:33:22 -07:00
{
english = settings: website {
2021-10-23 00:51:13 -07:00
inherit (settings) host;
ssl = settings.ssl or false;
2021-10-23 00:33:22 -07:00
drafts = settings.drafts or false;
2021-10-23 00:51:13 -07:00
src = blog-source;
2020-09-02 17:25:52 -07:00
path = ".";
extraFlags = "--config=config.toml,config-gen.toml";
replaceUrl = {
from = "https://danilafe.com";
2021-10-23 00:33:22 -07:00
to = wrapHost (settings.ssl or false) settings.host;
2020-09-02 17:25:52 -07:00
};
};
russian = settings: website {
2021-10-23 00:51:13 -07:00
inherit (settings) host;
ssl = settings.ssl or false;
2021-10-23 00:33:22 -07:00
drafts = settings.drafts or false;
2021-10-23 00:51:13 -07:00
src = blog-source-localized;
path = "ru";
extraFlags = "";
replaceUrl = {
from = "https://ru.danilafe.com";
2021-10-23 00:33:22 -07:00
to = wrapHost (settings.ssl or false) settings.host;
2020-09-02 17:25:52 -07:00
};
};
2021-10-23 00:33:22 -07:00
}