Made xbursttools have libusb and libusb1. Looks like depending on both.

svn path=/nixpkgs/trunk/; revision=32969
This commit is contained in:
Lluís Batlle i Rossell
2012-03-10 11:26:55 +00:00
parent 313191412d
commit 7c92bab1e5
2 changed files with 3 additions and 4 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchgit, libusb, autoconf, automake, confuse, pkgconfig
{ stdenv, fetchgit, libusb, libusb1, autoconf, automake, confuse, pkgconfig
, gccCross ? null }:
let
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
dontCrossStrip = true;
buildNativeInputs = [ pkgconfig ];
buildInputs = [ libusb autoconf automake confuse ] ++
buildInputs = [ libusb libusb1 autoconf automake confuse ] ++
stdenv.lib.optional (gccCross != null) gccCross;
meta = {