aravis: fix build

It was using libusb-compat instead of libusb1, and the former no longer propagates the latter.
wip/yesman
Jan Tojnar 4 years ago
parent 48271f8db9
commit aa2b9c9e99
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
  1. 4
      pkgs/development/libraries/aravis/default.nix

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk-doc, intltool
, audit, glib, libusb, libxml2
, audit, glib, libusb1, libxml2
, wrapGAppsHook
, gstreamer ? null
, gst-plugins-base ? null
@ -53,7 +53,7 @@ in
buildInputs =
[ glib libxml2 ]
++ stdenv.lib.optional enableUsb libusb
++ stdenv.lib.optional enableUsb libusb1
++ stdenv.lib.optional enablePacketSocket audit
++ stdenv.lib.optionals (enableViewer || enableGstPlugin) [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ]
++ stdenv.lib.optionals (enableViewer) [ libnotify gtk3 gnome3.adwaita-icon-theme ];

Loading…
Cancel
Save