man-pages: Make it findable by manpages

Previously `nix-shell -p man-pages` wouldn't work, because `man` by
default looks up man pages only for the packages that appear in PATH.
Since man-pages didn't have anything in $out/bin though, it wouldn't be
put on PATH.

This fixes that by just creating an empty $out/bin
gstqt5
Silvan Mosberger 2020-09-29 02:08:16 +02:00
parent 09eb860c99
commit 75d24ef5e7
No known key found for this signature in database
GPG Key ID: E8F1E9EAD284E17D
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,10 @@ stdenv.mkDerivation rec {
# conflict with shadow-utils
rm $out/share/man/man5/passwd.5 \
$out/share/man/man3/getspnam.3
# The manpath executable looks up manpages from PATH. And this package won't
# appear in PATH unless it has a /bin folder
mkdir -p $out/bin
'';
outputDocdev = "out";