Merge pull request #166509 from jtojnar/man-opt-nodup
nixos/man: prevent duplication of options
This commit is contained in:
commit
c274af4b7b
@ -14,6 +14,10 @@ with pkgs;
|
|||||||
let
|
let
|
||||||
lib = pkgs.lib;
|
lib = pkgs.lib;
|
||||||
|
|
||||||
|
docbook_xsl_ns = pkgs.docbook-xsl-ns.override {
|
||||||
|
withManOptDedupPatch = true;
|
||||||
|
};
|
||||||
|
|
||||||
# We need to strip references to /nix/store/* from options,
|
# We need to strip references to /nix/store/* from options,
|
||||||
# including any `extraSources` if some modules came from elsewhere,
|
# including any `extraSources` if some modules came from elsewhere,
|
||||||
# or else the build will fail.
|
# or else the build will fail.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, substituteAll, fetchurl, fetchpatch, findXMLCatalogs, writeScriptBin, ruby, bash }:
|
{ lib, stdenv, substituteAll, fetchurl, fetchpatch, findXMLCatalogs, writeScriptBin, ruby, bash, withManOptDedupPatch ? false }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
@ -36,6 +36,10 @@ let
|
|||||||
src = ./catalog-legacy-uris.patch;
|
src = ./catalog-legacy-uris.patch;
|
||||||
inherit legacySuffix suffix version;
|
inherit legacySuffix suffix version;
|
||||||
})
|
})
|
||||||
|
] ++ lib.optionals withManOptDedupPatch [
|
||||||
|
# Fixes https://github.com/NixOS/nixpkgs/issues/166304
|
||||||
|
# https://github.com/docbook/xslt10-stylesheets/pull/241
|
||||||
|
./fix-man-options-duplication.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ findXMLCatalogs ];
|
propagatedBuildInputs = [ findXMLCatalogs ];
|
||||||
|
@ -0,0 +1,11 @@
|
|||||||
|
--- a/manpages/lists.xsl
|
||||||
|
+++ b/manpages/lists.xsl
|
||||||
|
@@ -110,7 +110,7 @@
|
||||||
|
<xsl:text>.RE </xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
-<xsl:template match="d:varlistentry/d:term"/>
|
||||||
|
+<xsl:template match="d:varlistentry/d:term" priority="1"/>
|
||||||
|
<xsl:template match="d:glossentry/d:glossterm"/>
|
||||||
|
|
||||||
|
<xsl:template match="d:variablelist[ancestor::d:listitem or ancestor::d:step or ancestor::d:glossdef]|
|
Loading…
Reference in New Issue
Block a user