I think xburst needs pkgconfig

svn path=/nixpkgs/trunk/; revision=32858
This commit is contained in:
Lluís Batlle i Rossell 2012-03-07 21:38:19 +00:00
parent 749df87304
commit 906f400681

View file

@ -1,4 +1,4 @@
{ stdenv, fetchgit, libusb, autoconf, automake, confuse
{ stdenv, fetchgit, libusb, autoconf, automake, confuse, pkgconfig
, gccCross ? null }:
let
@ -24,6 +24,7 @@ stdenv.mkDerivation {
# Not to strip cross build binaries (this is for the gcc-cross-wrapper)
dontCrossStrip = true;
buildNativeInputs = [ pkgconfig ];
buildInputs = [ libusb autoconf automake confuse ] ++
stdenv.lib.optional (gccCross != null) gccCross;