summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-10-11 21:24:05 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-10-13 20:18:59 +0200
commit47305626ab5baa6ded42cdf870d45cbd08be252b (patch)
treee94839d98727d2f919ebfff7af57251a25db5c8d /pkgs
parentdebdd33fc8c04f44c7eea7ae917b0420bcbd2c63 (diff)
downloadnixpkgs-47305626ab5baa6ded42cdf870d45cbd08be252b.tar
nixpkgs-47305626ab5baa6ded42cdf870d45cbd08be252b.tar.gz
nixpkgs-47305626ab5baa6ded42cdf870d45cbd08be252b.tar.bz2
nixpkgs-47305626ab5baa6ded42cdf870d45cbd08be252b.tar.lz
nixpkgs-47305626ab5baa6ded42cdf870d45cbd08be252b.tar.xz
nixpkgs-47305626ab5baa6ded42cdf870d45cbd08be252b.tar.zst
nixpkgs-47305626ab5baa6ded42cdf870d45cbd08be252b.zip
xorg{xcb-util-keysyms,libxkbfile}: split the dev output
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/x11/xorg/overrides.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix
index 5bf2648a2cd..56abbb784e9 100644
--- a/pkgs/servers/x11/xorg/overrides.nix
+++ b/pkgs/servers/x11/xorg/overrides.nix
@@ -214,6 +214,10 @@ in
   libXpresent = attrs: attrs
     // { buildInputs = with xorg; attrs.buildInputs ++ [ libXext libXfixes libXrandr ]; };
 
+  libxkbfile = attrs: attrs // {
+    outputs = [ "dev" "out" ]; # mainly to avoid propagation
+  };
+
   setxkbmap = attrs: attrs // {
     postInstall =
       ''
@@ -238,6 +242,10 @@ in
     meta.maintainers = [ stdenv.lib.maintainers.lovek323 ];
   };
 
+  xcbutilkeysyms = attrs: attrs // {
+    outputs = [ "dev" "out" ]; # mainly to get rid of propagating others
+  };
+
   xf86inputevdev = attrs: attrs // {
     preBuild = "sed -e '/motion_history_proc/d; /history_size/d;' -i src/*.c";
     installFlags = "sdkdir=\${out}/include/xorg";