blob: affb595c79b02f1d7e55562f90879eecd829362b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
hjemModule,
nixpkgs,
pkgs,
}: let
docs = pkgs.callPackage ../docs/package.nix {inherit hjemModule nixpkgs;};
in {
hjem = pkgs.callPackage ../cli/package.nix {};
# Hjem documentation. 'docs-html' contains the HTML document created by ndg,
# 'docs-man' contains the generated manpage, and docs-json contains a
# standalone 'options.json' that is also fed to ndg for third party
# consumption.
docs-html = docs.html;
docs-man = docs.man;
docs-json = docs.options.json;
}
|