xorg.xorgdocs: Make man pages discoverable by manpages

This commit is contained in:
Silvan Mosberger 2021-05-04 23:09:45 +02:00
parent 1b1d7e93dc
commit 5f7f084ab7

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];
});