summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-10-25 19:34:30 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-10-28 10:17:07 +0100
commit06eba7d3202c361457d53d270d2d5538beab78f8 (patch)
tree8250f9fd9ae3b5a626475b88b0e2f446cbdb8a5c /pkgs
parent6c75f4c9aa7bd5df0dc4aecc4185b200a34ba115 (diff)
downloadnixpkgs-06eba7d3202c361457d53d270d2d5538beab78f8.tar
nixpkgs-06eba7d3202c361457d53d270d2d5538beab78f8.tar.gz
nixpkgs-06eba7d3202c361457d53d270d2d5538beab78f8.tar.bz2
nixpkgs-06eba7d3202c361457d53d270d2d5538beab78f8.tar.lz
nixpkgs-06eba7d3202c361457d53d270d2d5538beab78f8.tar.xz
nixpkgs-06eba7d3202c361457d53d270d2d5538beab78f8.tar.zst
nixpkgs-06eba7d3202c361457d53d270d2d5538beab78f8.zip
xorg: remove $man where it was only man3
Now man3 is deleted if not specified otherwise,
and I don't really see a reason for X libs to produce them.
(This fixes failures due to not producing $man outputs.)

The $doc outputs are also development docs (all probably),
but I left those for now.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/x11/xorg/overrides.nix22
1 files changed, 11 insertions, 11 deletions
diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix
index 3b72494e896..0999605b91c 100644
--- a/pkgs/servers/x11/xorg/overrides.nix
+++ b/pkgs/servers/x11/xorg/overrides.nix
@@ -73,7 +73,7 @@ in
   libxcb = attrs : attrs // {
     nativeBuildInputs = [ args.python ];
     configureFlags = "--enable-xkb --enable-xinput";
-    outputs = [ "dev" "out" "doc" "man" ];
+    outputs = [ "dev" "out" "doc" ];
   };
 
   xcbproto = attrs : attrs // {
@@ -98,7 +98,7 @@ in
   };
 
   libXau = attrs: attrs // {
-    outputs = [ "dev" "out" "man" ];
+    outputs = [ "dev" "out" ];
   };
 
   libXdmcp = attrs: attrs // {
@@ -115,7 +115,7 @@ in
   };
 
   libXxf86vm = attrs: attrs // {
-    outputs = [ "dev" "out" "man" ];
+    outputs = [ "dev" "out" ];
     preConfigure = setMalloc0ReturnsNullCrossCompiling;
   };
 
@@ -146,7 +146,7 @@ in
   };
 
   libXcomposite = attrs: attrs // {
-    outputs = [ "dev" "out" "man" ];
+    outputs = [ "dev" "out" ];
     propagatedBuildInputs = [ xorg.libXfixes ];
   };
 
@@ -156,7 +156,7 @@ in
   };
 
   libXcursor = attrs: attrs // {
-    outputs = [ "dev" "out" "man" ];
+    outputs = [ "dev" "out" ];
   };
 
   libXdamage = attrs: attrs // {
@@ -164,7 +164,7 @@ in
   };
 
   libXft = attrs: attrs // {
-    outputs = [ "dev" "out" "man" ];
+    outputs = [ "dev" "out" ];
     propagatedBuildInputs = [ xorg.libXrender args.freetype args.fontconfig ];
     preConfigure = setMalloc0ReturnsNullCrossCompiling;
     # the include files need ft2build.h, and Requires.private isn't enough for us
@@ -174,21 +174,21 @@ in
   };
 
   libXext = attrs: attrs // {
-    outputs = [ "dev" "out" "man" "doc" ];
+    outputs = [ "dev" "out" "doc" ];
     propagatedBuildInputs = [ xorg.xproto xorg.libXau ];
     preConfigure = setMalloc0ReturnsNullCrossCompiling;
   };
 
   libXfixes = attrs: attrs // {
-    outputs = [ "dev" "out" "man" ];
+    outputs = [ "dev" "out" ];
   };
 
   libXi = attrs: attrs // {
-    outputs = [ "dev" "out" "man" "doc" ];
+    outputs = [ "dev" "out" "doc" ];
   };
 
   libXinerama = attrs: attrs // {
-    outputs = [ "dev" "out" "man" ];
+    outputs = [ "dev" "out" ];
   };
 
   libXmu = attrs: attrs // {
@@ -197,7 +197,7 @@ in
   };
 
   libXrandr = attrs: attrs // {
-    outputs = [ "dev" "out" "man" ];
+    outputs = [ "dev" "out" ];
     preConfigure = setMalloc0ReturnsNullCrossCompiling;
     propagatedBuildInputs = [xorg.libXrender];
   };