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
commit ae1c8ede09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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