subsurface: add dependencies for transports

The version of libdivecomputer that subsurface uses was built without
libraries it needs for transports, this made it impossible to import
dives from a dive computer over USB.
This commit is contained in:
Michel van der Burg 2023-03-19 16:41:25 +01:00
parent befd10e4fc
commit af4e12adb7

View file

@ -9,8 +9,10 @@
, qmake
, curl
, grantlee
, hidapi
, libgit2
, libssh2
, libusb1
, libxml2
, libxslt
, libzip
@ -44,9 +46,9 @@ let
sourceRoot = "source/libdivecomputer";
nativeBuildInputs = [ autoreconfHook ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ zlib ];
buildInputs = [ zlib libusb1 bluez hidapi ];
enableParallelBuilding = true;