sunxi-tools: fix build

It was using libusb-compat instead of libusb1, and the former no longer propagates the latter.
This commit is contained in:
Jan Tojnar 2020-04-04 12:34:31 +02:00
parent df28c41854
commit 71278aef73
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, pkgconfig, libusb, zlib }:
{ stdenv, fetchFromGitHub, pkgconfig, libusb1, zlib }:
stdenv.mkDerivation {
name = "sunxi-tools-20181113";
@ -11,7 +11,7 @@ stdenv.mkDerivation {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libusb zlib ];
buildInputs = [ libusb1 zlib ];
makeFlags = [ "PREFIX=$(out)" ];