lol

man-pages: Don't have a separate docdev output

I got:

$ nix-env -f . -iA manpages
$ man mmap
No manual entry for mmap

which is suboptimal for a package that "documents the Linux kernel and
C library interfaces that are employed by user-space programs"
(https://www.kernel.org/doc/man-pages/).

-5
-5
pkgs/data/documentation/man-pages/default.nix
··· 9 9 sha256 = "1vimj3va16plxmv46rw6nzw4m9l11hb7r1d217y1bjpd5q8nw8qz"; 10 10 }; 11 11 12 - # keep developer docs separately (man2 and man3) 13 - outputs = [ "out" "docdev" ]; 14 12 makeFlags = [ "MANDIR=$(out)/share/man" ]; 15 - postFixup = '' 16 - moveToOutput share/man/man2 "$docdev" 17 - ''; 18 13 19 14 meta = with stdenv.lib; { 20 15 description = "Linux development manual pages";