dump1090: 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 09:23:19 +02:00
parent faa2f094e9
commit 73e2823538
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -2,7 +2,7 @@
, fetchFromGitHub
, pkgconfig
, libbladeRF
, libusb
, libusb1
, ncurses
, rtl-sdr
}:
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
buildInputs = [
libbladeRF
libusb
libusb1
ncurses
rtl-sdr
];