From 3136303d632b975a86cc58269c487a3b2aca8b1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 21 Nov 2009 10:11:44 +0000 Subject: [PATCH] Fixing the libxcb native build: missing dependency. svn path=/nixpkgs/branches/stdenv-updates/; revision=18499 --- pkgs/servers/x11/xorg/overrides.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index 5986a937c477..23937c8978e2 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -21,6 +21,10 @@ preBuild = "substituteInPlace mkfontdir.cpp --replace BINDIR ${xorg.mkfontscale}/bin"; }; + libxcb = attrs : attrs // { + buildInputs = attrs.buildInputs ++ [ xorg.xproto ]; + }; + libXext = attrs: attrs // { buildInputs = attrs.buildInputs ++ [xorg.libXau]; };