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 , fetchFromGitHub
, pkgconfig , pkgconfig
, libbladeRF , libbladeRF
, libusb , libusb1
, ncurses , ncurses
, rtl-sdr , rtl-sdr
}: }:
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
libbladeRF libbladeRF
libusb libusb1
ncurses ncurses
rtl-sdr rtl-sdr
]; ];