mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
* For the generation of manual / manpages, don't evaluate the option
declarations again (because we already have them). This cuts evaluation time from 7.2s to 4.9s. svn path=/nixos/trunk/; revision=16798
This commit is contained in:
parent
b48a1c394b
commit
f1035de47c
3 changed files with 11 additions and 6 deletions
|
@ -3,7 +3,7 @@
|
|||
# of the virtual consoles. The latter is useful for the installation
|
||||
# CD.
|
||||
|
||||
{pkgs, config, ...}:
|
||||
{pkgs, config, optionDeclarations, ...}:
|
||||
|
||||
let
|
||||
|
||||
|
@ -15,7 +15,7 @@ let
|
|||
# We could speed up the evaluation of the manual expression by
|
||||
# providing it the optionDeclarations of the current
|
||||
# configuration.
|
||||
import ../../../doc/manual {inherit pkgs;};
|
||||
import ../../../doc/manual {inherit pkgs optionDeclarations;};
|
||||
|
||||
in
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue