2021-04-10 11:27:01 +02:00
|
|
|
{ depot, pkgs, lib, ... }:
|
2021-03-24 20:02:03 +01:00
|
|
|
|
|
|
|
let
|
2021-04-10 11:27:01 +02:00
|
|
|
inherit (pkgs)
|
2021-03-24 20:02:03 +01:00
|
|
|
gzip
|
|
|
|
mandoc
|
|
|
|
coreutils
|
|
|
|
;
|
|
|
|
|
|
|
|
inherit (depot.nix)
|
|
|
|
runExecline
|
|
|
|
getBins
|
|
|
|
;
|
|
|
|
|
|
|
|
bins = getBins mandoc [ "mandoc" ]
|
2022-01-30 17:06:58 +01:00
|
|
|
// getBins gzip [ "gzip" ]
|
|
|
|
// getBins coreutils [ "mkdir" "ln" "cp" ]
|
|
|
|
;
|
2021-03-24 20:02:03 +01:00
|
|
|
|
|
|
|
defaultGzip = true;
|
|
|
|
|
|
|
|
basename = gzip: { name, section, ... }:
|
|
|
|
"${name}.${toString section}${lib.optionalString gzip ".gz"}";
|
|
|
|
|
|
|
|
manDir = { section, ... }:
|
|
|
|
"\${out}/share/man/man${toString section}";
|
|
|
|
|
|
|
|
target = gzip: args:
|
|
|
|
"${manDir args}/${basename gzip args}";
|
|
|
|
|
|
|
|
buildManPage =
|
|
|
|
{ requireLint ? false
|
|
|
|
, gzip ? defaultGzip
|
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
{ content
|
|
|
|
, ...
|
2022-01-30 17:06:58 +01:00
|
|
|
}@page:
|
|
|
|
let
|
2021-03-24 20:02:03 +01:00
|
|
|
source = builtins.toFile (basename false page) content;
|
2022-01-30 17:06:58 +01:00
|
|
|
in
|
|
|
|
runExecline (basename gzip page) { } ([
|
|
|
|
(if requireLint then "if" else "foreground")
|
|
|
|
[
|
|
|
|
bins.mandoc
|
|
|
|
"-mdoc"
|
|
|
|
"-T"
|
|
|
|
"lint"
|
|
|
|
source
|
2021-03-24 20:02:03 +01:00
|
|
|
]
|
2022-01-30 17:06:58 +01:00
|
|
|
"importas"
|
|
|
|
"out"
|
|
|
|
"out"
|
2021-03-24 20:02:03 +01:00
|
|
|
] ++ (if gzip then [
|
2022-01-30 17:06:58 +01:00
|
|
|
"redirfd"
|
|
|
|
"-w"
|
|
|
|
"1"
|
|
|
|
"$out"
|
|
|
|
bins.gzip
|
|
|
|
"-c"
|
|
|
|
source
|
2021-03-24 20:02:03 +01:00
|
|
|
] else [
|
2022-01-30 17:06:58 +01:00
|
|
|
bins.cp
|
|
|
|
"--reflink=auto"
|
|
|
|
source
|
|
|
|
"$out"
|
2021-03-24 20:02:03 +01:00
|
|
|
]));
|
|
|
|
|
|
|
|
buildManPages =
|
|
|
|
name:
|
2022-01-30 17:06:58 +01:00
|
|
|
{ derivationArgs ? { }
|
2021-03-24 20:02:03 +01:00
|
|
|
, gzip ? defaultGzip
|
|
|
|
, ...
|
|
|
|
}@args:
|
|
|
|
pages:
|
2022-01-30 17:06:58 +01:00
|
|
|
runExecline "${name}-man-pages"
|
|
|
|
{
|
|
|
|
inherit derivationArgs;
|
|
|
|
}
|
|
|
|
([
|
|
|
|
"importas"
|
|
|
|
"out"
|
|
|
|
"out"
|
|
|
|
] ++ lib.concatMap
|
|
|
|
({ name, section, content }@page: [
|
|
|
|
"if"
|
|
|
|
[ bins.mkdir "-p" (manDir page) ]
|
|
|
|
"if"
|
|
|
|
[
|
|
|
|
bins.ln
|
|
|
|
"-s"
|
|
|
|
(buildManPage args page)
|
|
|
|
(target gzip page)
|
|
|
|
]
|
|
|
|
])
|
|
|
|
pages);
|
2021-03-24 20:02:03 +01:00
|
|
|
|
2022-01-30 17:06:58 +01:00
|
|
|
in
|
|
|
|
{
|
2021-03-24 20:02:03 +01:00
|
|
|
__functor = _: buildManPages;
|
|
|
|
|
|
|
|
single = buildManPage;
|
|
|
|
}
|