···110110</programlisting>111111 </para>112112 </listitem>113113+ <listitem>114114+ <para>115115+ Two new option <link linkend="opt-documentation.man.generateCaches">documentation.man.generateCaches</link>116116+ has been added to automatically generate the <literal>man-db</literal> caches, which are needed by utilities117117+ like <command>whatis</command> and <command>apropos</command>. The caches are generated during the build of118118+ the NixOS configuration: since this can be expensive when a large number of packages are installed, the119119+ feature is disabled by default.120120+ </para>121121+ </listitem>113122 </itemizedlist>114123 </section>115124
···3030 configureFlags = [ "--with-libgpg-error-prefix=${libgpgerror.dev}" ]3131 ++ stdenv.lib.optional stdenv.hostPlatform.isMusl "--disable-asm";32323333+ # Necessary to generate correct assembly when compiling for aarch32 on3434+ # aarch643535+ configurePlatforms = [ "host" "build" ];3636+3337 # Make sure libraries are correct for .pc and .la files3438 # Also make sure includes are fixed for callers who don't use libgpgcrypt-config3539 postFixup = ''