2019-10-21 18:45:34 +01:00
|
|
|
{ stdenv
|
2018-10-14 22:18:17 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
2019-10-21 18:45:34 +01:00
|
|
|
, pkgconfig
|
2020-10-10 11:05:31 +01:00
|
|
|
, enableUdev ? stdenv.isLinux && !stdenv.hostPlatform.isMusl
|
|
|
|
, udev ? null
|
2019-10-21 18:45:34 +01:00
|
|
|
, libobjc
|
|
|
|
, IOKit
|
|
|
|
, withStatic ? false
|
|
|
|
}:
|
|
|
|
|
2020-10-10 11:05:31 +01:00
|
|
|
assert enableUdev -> udev != null;
|
2010-09-26 20:39:02 +01:00
|
|
|
|
2018-10-14 22:18:17 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-29 00:01:16 +01:00
|
|
|
pname = "libusb";
|
2019-08-29 00:10:02 +01:00
|
|
|
version = "1.0.23";
|
2010-09-26 20:39:02 +01:00
|
|
|
|
2018-10-14 22:18:17 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libusb";
|
|
|
|
repo = "libusb";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0mxbpg01kgbk5nh6524b0m4xk7ywkyzmc3yhi5asqcsd3rbhjj98";
|
2010-09-26 20:39:02 +01:00
|
|
|
};
|
|
|
|
|
2020-05-07 22:25:10 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-04-18 23:48:52 +01:00
|
|
|
|
2018-10-14 22:18:17 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
2015-06-19 20:56:12 +01:00
|
|
|
propagatedBuildInputs =
|
2020-10-10 11:05:31 +01:00
|
|
|
stdenv.lib.optional enableUdev udev ++
|
2015-06-19 20:56:12 +01:00
|
|
|
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
2013-02-12 22:26:26 +00:00
|
|
|
|
2018-10-14 22:18:17 +01:00
|
|
|
dontDisableStatic = withStatic;
|
|
|
|
|
2020-10-10 11:05:31 +01:00
|
|
|
configureFlags = stdenv.lib.optional (!enableUdev) "--disable-udev";
|
2020-05-23 15:50:23 +01:00
|
|
|
|
2020-10-10 11:05:31 +01:00
|
|
|
preFixup = stdenv.lib.optionalString enableUdev ''
|
|
|
|
sed 's,-ludev,-L${stdenv.lib.getLib udev}/lib -ludev,' -i $out/lib/libusb-1.0.la
|
2015-06-25 14:07:05 +01:00
|
|
|
'';
|
|
|
|
|
2018-10-11 13:30:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = [ ];
|
2010-09-26 20:39:02 +01:00
|
|
|
};
|
2018-10-14 22:18:17 +01:00
|
|
|
}
|