From e84a3524b5eaa03521bfbd5c67caec883ef76011 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 1 Sep 2016 10:54:48 +0200 Subject: [PATCH] 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/). --- pkgs/data/documentation/man-pages/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/data/documentation/man-pages/default.nix b/pkgs/data/documentation/man-pages/default.nix index b02c9162c1c..8eeebf40134 100644 --- a/pkgs/data/documentation/man-pages/default.nix +++ b/pkgs/data/documentation/man-pages/default.nix @@ -9,12 +9,7 @@ stdenv.mkDerivation rec { sha256 = "1vimj3va16plxmv46rw6nzw4m9l11hb7r1d217y1bjpd5q8nw8qz"; }; - # keep developer docs separately (man2 and man3) - outputs = [ "out" "docdev" ]; makeFlags = [ "MANDIR=$(out)/share/man" ]; - postFixup = '' - moveToOutput share/man/man2 "$docdev" - ''; meta = with stdenv.lib; { description = "Linux development manual pages";