Merge pull request #121737 from Infinisil/xorg-docs

xorg.xorgdocs: Make man pages discoverable by manpages
This commit is contained in:
Silvan Mosberger
2021-05-07 13:42:43 +02:00
committed by GitHub

View File

@@ -833,6 +833,12 @@ self: super:
'';
});
xorgdocs = super.xorgdocs.overrideAttrs (attrs: {
# This makes the man pages discoverable by the default man,
# since it looks for packages in $PATH
postInstall = "mkdir $out/bin";
});
xwd = super.xwd.overrideAttrs (attrs: {
buildInputs = with self; attrs.buildInputs ++ [libXt];
});