2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv
|
2018-10-14 23:18:17 +02:00
|
|
|
, fetchFromGitHub
|
2021-02-07 15:02:53 +01:00
|
|
|
, fetchpatch
|
2018-10-14 23:18:17 +02:00
|
|
|
, autoreconfHook
|
2021-01-19 07:50:56 +01:00
|
|
|
, pkg-config
|
2020-10-10 12:05:31 +02:00
|
|
|
, enableUdev ? stdenv.isLinux && !stdenv.hostPlatform.isMusl
|
2021-01-28 21:38:17 +01:00
|
|
|
, udev
|
2019-10-21 19:45:34 +02:00
|
|
|
, libobjc
|
|
|
|
, IOKit
|
|
|
|
, withStatic ? false
|
|
|
|
}:
|
|
|
|
|
2018-10-14 23:18:17 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-29 01:01:16 +02:00
|
|
|
pname = "libusb";
|
2020-12-12 13:04:49 +01:00
|
|
|
version = "1.0.24";
|
2010-09-26 21:39:02 +02:00
|
|
|
|
2018-10-14 23:18:17 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libusb";
|
|
|
|
repo = "libusb";
|
|
|
|
rev = "v${version}";
|
2020-12-12 13:04:49 +01:00
|
|
|
sha256 = "18ri8ky422hw64zry7bpbarb1m0hiljyf64a0a9y093y7aad38i7";
|
2010-09-26 21:39:02 +02:00
|
|
|
};
|
|
|
|
|
2020-05-07 23:25:10 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-04-19 00:48:52 +02:00
|
|
|
|
2021-02-07 15:02:53 +01:00
|
|
|
patches = [ (fetchpatch {
|
|
|
|
# https://bugs.archlinux.org/task/69121
|
|
|
|
url = "https://github.com/libusb/libusb/commit/f6d2cb561402c3b6d3627c0eb89e009b503d9067.patch";
|
|
|
|
sha256 = "1dbahikcbwkjhyvks7wbp7fy2bf7nca48vg5z0zqvqzjb9y595cq";
|
|
|
|
excludes = [ "libusb/version_nano.h" ];
|
|
|
|
}) ];
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
2015-06-19 21:56:12 +02:00
|
|
|
propagatedBuildInputs =
|
2021-01-21 18:00:13 +01:00
|
|
|
lib.optional enableUdev udev ++
|
|
|
|
lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
2013-02-12 23:26:26 +01:00
|
|
|
|
2018-10-14 23:18:17 +02:00
|
|
|
dontDisableStatic = withStatic;
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
configureFlags = lib.optional (!enableUdev) "--disable-udev";
|
2020-05-23 16:50:23 +02:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
preFixup = lib.optionalString enableUdev ''
|
|
|
|
sed 's,-ludev,-L${lib.getLib udev}/lib -ludev,' -i $out/lib/libusb-1.0.la
|
2015-06-25 15:07:05 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2018-10-11 14:30:10 +02:00
|
|
|
homepage = "https://libusb.info/";
|
|
|
|
repositories.git = "https://github.com/libusb/libusb";
|
|
|
|
description = "cross-platform user-mode USB device library";
|
|
|
|
longDescription = ''
|
|
|
|
libusb is a cross-platform user-mode library that provides access to USB devices.
|
|
|
|
'';
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.lgpl21Plus;
|
2020-12-14 13:03:36 +01:00
|
|
|
maintainers = with maintainers; [ prusnak ];
|
2010-09-26 21:39:02 +02:00
|
|
|
};
|
2018-10-14 23:18:17 +02:00
|
|
|
}
|