mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Fixing the libxcb native build: missing dependency.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18499
This commit is contained in:
parent
a263cb814e
commit
3136303d63
@ -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…
Reference in New Issue
Block a user