forked from mirrors/nixpkgs
Made xbursttools have libusb and libusb1. Looks like depending on both.
svn path=/nixpkgs/trunk/; revision=32969
This commit is contained in:
parent
313191412d
commit
7c92bab1e5
|
@ -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 = {
|
||||
|
|
|
@ -1580,8 +1580,7 @@ let
|
|||
x11_ssh_askpass = callPackage ../tools/networking/x11-ssh-askpass { };
|
||||
|
||||
xbursttools = assert stdenv ? glibc; import ../tools/misc/xburst-tools {
|
||||
inherit stdenv fetchgit autoconf automake confuse pkgconfig;
|
||||
libusb = libusb1;
|
||||
inherit stdenv fetchgit autoconf automake confuse pkgconfig libusb libusb1;
|
||||
# It needs a cross compiler for mipsel to build the firmware it will
|
||||
# load into the Ben Nanonote
|
||||
gccCross =
|
||||
|
|
Loading…
Reference in a new issue