mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
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:
parent
befd10e4fc
commit
af4e12adb7
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue