mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
I think xburst needs pkgconfig
svn path=/nixpkgs/trunk/; revision=32858
This commit is contained in:
parent
749df87304
commit
906f400681
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user