Fixing the libxcb native build: missing dependency.

svn path=/nixpkgs/branches/stdenv-updates/; revision=18499
wip/yesman
Lluís Batlle i Rossell 15 years ago
parent a263cb814e
commit 3136303d63
  1. 4
      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];
};

Loading…
Cancel
Save