2018-03-26 18:22:04 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let cfg = config.documentation; in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
documentation = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Whether to install documentation of packages from
|
|
|
|
<option>environment.systemPackages</option> into the generated system path.
|
2018-04-05 22:20:46 +00:00
|
|
|
|
|
|
|
See "Multiple-output packages" chapter in the nixpkgs manual for more info.
|
2018-03-26 18:22:04 +00:00
|
|
|
'';
|
2018-04-05 22:20:46 +00:00
|
|
|
# which is at ../../../doc/multiple-output.xml
|
2018-03-26 18:22:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
man.enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Whether to install manual pages and the <command>man</command> command.
|
|
|
|
This also includes "man" outputs.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-04-05 22:20:46 +00:00
|
|
|
info.enable = mkOption {
|
2018-03-26 18:22:04 +00:00
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
2018-04-05 22:20:46 +00:00
|
|
|
Whether to install info pages and the <command>info</command> command.
|
|
|
|
This also includes "info" outputs.
|
2018-03-26 18:22:04 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-04-05 22:20:46 +00:00
|
|
|
doc.enable = mkOption {
|
2018-03-26 18:22:04 +00:00
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
2018-04-05 22:20:46 +00:00
|
|
|
Whether to install documentation distributed in packages' <literal>/share/doc</literal>.
|
|
|
|
Usually plain text and/or HTML.
|
|
|
|
This also includes "doc" outputs.
|
2018-03-26 18:22:04 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2018-04-05 22:27:46 +00:00
|
|
|
dev.enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to install documentation targeted at developers.
|
|
|
|
<itemizedlist>
|
|
|
|
<listitem><para>This includes man pages targeted at developers if <option>man.enable</option> is
|
|
|
|
set (this also includes "devman" outputs).</para></listitem>
|
|
|
|
<listitem><para>This includes info pages targeted at developers if <option>info.enable</option>
|
|
|
|
is set (this also includes "devinfo" outputs).</para></listitem>
|
|
|
|
<listitem><para>This includes other pages targeted at developers if <option>doc.enable</option>
|
|
|
|
is set (this also includes "devdoc" outputs).</para></listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
'';
|
|
|
|
};
|
2018-04-05 22:20:46 +00:00
|
|
|
|
2018-03-26 18:22:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable (mkMerge [
|
|
|
|
|
|
|
|
(mkIf cfg.man.enable {
|
|
|
|
environment.systemPackages = [ pkgs.man-db ];
|
|
|
|
environment.pathsToLink = [ "/share/man" ];
|
2018-04-05 22:27:46 +00:00
|
|
|
environment.extraOutputsToInstall = [ "man" ] ++ optional cfg.dev.enable [ "devman" ];
|
2018-03-26 18:22:04 +00:00
|
|
|
})
|
|
|
|
|
2018-04-05 22:20:46 +00:00
|
|
|
(mkIf cfg.info.enable {
|
|
|
|
environment.systemPackages = [ pkgs.texinfoInteractive ];
|
|
|
|
environment.pathsToLink = [ "/share/info" ];
|
2018-04-05 22:27:46 +00:00
|
|
|
environment.extraOutputsToInstall = [ "info" ] ++ optional cfg.dev.enable [ "devinfo" ];
|
2018-04-05 22:20:46 +00:00
|
|
|
})
|
|
|
|
|
2018-03-26 18:22:04 +00:00
|
|
|
(mkIf cfg.doc.enable {
|
|
|
|
# TODO(@oxij): put it here and remove from profiles?
|
|
|
|
# environment.systemPackages = [ pkgs.w3m ]; # w3m-nox?
|
|
|
|
environment.pathsToLink = [ "/share/doc" ];
|
2018-04-05 22:27:46 +00:00
|
|
|
environment.extraOutputsToInstall = [ "doc" ] ++ optional cfg.dev.enable [ "devdoc" ];
|
2018-03-26 18:22:04 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
}
|