mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
hidapi: request libusb1 directly
This commit is contained in:
parent
e726e341c6
commit
eac6c63db1
2 changed files with 3 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, systemd, libusb
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, systemd, libusb1
|
||||
, darwin }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
|
||||
buildInputs = [ ]
|
||||
++ stdenv.lib.optionals stdenv.isLinux [ libusb systemd ];
|
||||
++ stdenv.lib.optionals stdenv.isLinux [ libusb1 systemd ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
|
|
@ -12141,9 +12141,7 @@ in
|
|||
|
||||
heyefi = haskellPackages.heyefi;
|
||||
|
||||
hidapi = callPackage ../development/libraries/hidapi {
|
||||
libusb = libusb1;
|
||||
};
|
||||
hidapi = callPackage ../development/libraries/hidapi { };
|
||||
|
||||
highfive = callPackage ../development/libraries/highfive { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue