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