nixpkgs/nixos/modules/programs/less.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

136 lines
3.8 KiB
Nix
Raw Normal View History

2018-01-20 19:12:40 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.less;
configText = if (cfg.configFile != null) then (builtins.readFile cfg.configFile) else ''
2018-01-20 19:12:40 +00:00
#command
${concatStringsSep "\n"
(mapAttrsToList (command: action: "${command} ${action}") cfg.commands)
}
2023-03-19 20:44:31 +00:00
${optionalString cfg.clearDefaultCommands "#stop"}
2018-01-20 19:12:40 +00:00
#line-edit
${concatStringsSep "\n"
(mapAttrsToList (command: action: "${command} ${action}") cfg.lineEditingKeys)
}
#env
${concatStringsSep "\n"
(mapAttrsToList (variable: values: "${variable}=${values}") cfg.envVariables)
}
'';
lessKey = pkgs.writeText "lessconfig" configText;
2018-01-20 19:12:40 +00:00
in
{
options = {
programs.less = {
# note that environment.nix sets PAGER=less, and
# therefore also enables this module
enable = mkEnableOption (lib.mdDoc "less, a file pager");
2018-01-20 19:12:40 +00:00
configFile = mkOption {
type = types.nullOr types.path;
default = null;
example = literalExpression ''"''${pkgs.my-configs}/lesskey"'';
description = lib.mdDoc ''
Path to lesskey configuration file.
{option}`configFile` takes precedence over {option}`commands`,
{option}`clearDefaultCommands`, {option}`lineEditingKeys`, and
{option}`envVariables`.
'';
};
2018-01-20 19:12:40 +00:00
commands = mkOption {
type = types.attrsOf types.str;
default = {};
example = {
2019-09-17 00:18:14 +00:00
h = "noaction 5\\e(";
l = "noaction 5\\e)";
2018-01-20 19:12:40 +00:00
};
description = lib.mdDoc "Defines new command keys.";
2018-01-20 19:12:40 +00:00
};
clearDefaultCommands = mkOption {
type = types.bool;
default = false;
description = lib.mdDoc ''
2018-01-20 19:12:40 +00:00
Clear all default commands.
You should remember to set the quit key.
Otherwise you will not be able to leave less without killing it.
'';
};
lineEditingKeys = mkOption {
type = types.attrsOf types.str;
default = {};
example = {
2019-08-13 21:52:01 +00:00
e = "abort";
2018-01-20 19:12:40 +00:00
};
description = lib.mdDoc "Defines new line-editing keys.";
2018-01-20 19:12:40 +00:00
};
envVariables = mkOption {
type = types.attrsOf types.str;
default = {
LESS = "-R";
};
2018-01-20 19:12:40 +00:00
example = {
LESS = "--quit-if-one-screen";
};
description = lib.mdDoc "Defines environment variables.";
2018-01-20 19:12:40 +00:00
};
lessopen = mkOption {
type = types.nullOr types.str;
default = "|${pkgs.lesspipe}/bin/lesspipe.sh %s";
defaultText = literalExpression ''"|''${pkgs.lesspipe}/bin/lesspipe.sh %s"'';
description = lib.mdDoc ''
Before less opens a file, it first gives your input preprocessor a chance to modify the way the contents of the file are displayed.
'';
};
lessclose = mkOption {
type = types.nullOr types.str;
default = null;
description = lib.mdDoc ''
2022-11-07 16:51:51 +00:00
When less closes a file opened in such a way, it will call another program, called the input postprocessor,
which may perform any desired clean-up action (such as deleting the replacement file created by LESSOPEN).
2018-01-20 19:12:40 +00:00
'';
};
};
};
config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.less ];
environment.variables = {
LESSKEYIN_SYSTEM = toString lessKey;
} // optionalAttrs (cfg.lessopen != null) {
2019-08-13 21:52:01 +00:00
LESSOPEN = cfg.lessopen;
} // optionalAttrs (cfg.lessclose != null) {
2019-08-13 21:52:01 +00:00
LESSCLOSE = cfg.lessclose;
};
2018-01-20 19:12:40 +00:00
warnings = optional (
cfg.clearDefaultCommands && (all (x: x != "quit") (attrValues cfg.commands))
) ''
config.programs.less.clearDefaultCommands clears all default commands of less but there is no alternative binding for exiting.
Consider adding a binding for 'quit'.
'';
};
meta.maintainers = with maintainers; [ johnazoidberg ];
}