diff options
| author | Mike Vink <59492084+ivi-vink@users.noreply.github.com> | 2025-01-16 22:22:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-16 22:22:34 +0100 |
| commit | 8e7bd91f353caacc0bc4105f573eb3e17f09e03a (patch) | |
| tree | c5059edcbebd9644290cad7c653c49a36d593021 /modules/programs/info/default.nix | |
| parent | 6bd39d420578aacf7c0bab7de3e7027b952115ae (diff) | |
| parent | bd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff) | |
Diffstat (limited to 'modules/programs/info/default.nix')
| -rw-r--r-- | modules/programs/info/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/programs/info/default.nix b/modules/programs/info/default.nix index 93aaf7c..d70e377 100644 --- a/modules/programs/info/default.nix +++ b/modules/programs/info/default.nix @@ -11,7 +11,7 @@ in programs.info.enable = mkOption { type = types.bool; default = true; - description = lib.mdDoc "Whether to enable info pages and the {command}`info` command."; + description = "Whether to enable info pages and the {command}`info` command."; }; }; @@ -22,7 +22,7 @@ in environment.pathsToLink = [ "/info" "/share/info" ]; environment.extraOutputsToInstall = [ "info" ]; - environment.postBuild = '' + environment.extraSetup = '' if test -w $out/share/info; then shopt -s nullglob for i in $out/share/info/*.info $out/share/info/*.info.gz; do |
