forked from mirrors/nixpkgs
Add libXrender to buildInputs
svn path=/nixpkgs/trunk/; revision=28091
This commit is contained in:
parent
fb896f62dd
commit
e2f7b2087c
|
@ -14,6 +14,7 @@
|
|||
, libX11
|
||||
, libXt
|
||||
, libXext
|
||||
, libXrender
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -24,7 +25,19 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1qhwlz9y5qmwmja4qnxg6sn3pgsg1i11fb9j41w8l26acyhk34rs";
|
||||
};
|
||||
|
||||
buildInputs = [ unzip procps ant which zip nettools alsaLib libX11 libXt libXext ];
|
||||
buildInputs = [
|
||||
unzip
|
||||
procps
|
||||
ant
|
||||
which
|
||||
zip
|
||||
nettools
|
||||
alsaLib
|
||||
libX11
|
||||
libXt
|
||||
libXext
|
||||
libXrender
|
||||
];
|
||||
|
||||
postUnpack = ''
|
||||
sed -i -e "s@/usr/bin/test@${coreutils}/bin/test@" \
|
||||
|
|
Loading…
Reference in a new issue