Merge pull request #121737 from Infinisil/xorg-docs

xorg.xorgdocs: Make man pages discoverable by manpages

authored by

Silvan Mosberger and committed by
GitHub
ae1c8ede 860b4575

+6
+6
pkgs/servers/x11/xorg/overrides.nix
··· 833 ''; 834 }); 835 836 xwd = super.xwd.overrideAttrs (attrs: { 837 buildInputs = with self; attrs.buildInputs ++ [libXt]; 838 });
··· 833 ''; 834 }); 835 836 + xorgdocs = super.xorgdocs.overrideAttrs (attrs: { 837 + # This makes the man pages discoverable by the default man, 838 + # since it looks for packages in $PATH 839 + postInstall = "mkdir $out/bin"; 840 + }); 841 + 842 xwd = super.xwd.overrideAttrs (attrs: { 843 buildInputs = with self; attrs.buildInputs ++ [libXt]; 844 });