2019-05-01 17:14:19 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, systemd ? null, libobjc, IOKit, withStatic ? false }:
|
2010-09-26 20:39:02 +01:00
|
|
|
|
2019-05-01 17:14:19 +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
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-29 00:10:02 +01:00
|
|
|
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/${pname}-${version}.tar.bz2";
|
|
|
|
sha256 = "13dd2a9x290d1q8nb1lqiaf36grcvns5ripk5k2xm0lajmpc04fv";
|
2010-09-26 20:39:02 +01:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ]; # get rid of propagating systemd closure
|
2015-04-18 23:48:52 +01:00
|
|
|
|
2017-09-05 22:25:26 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-06-19 20:56:12 +01:00
|
|
|
propagatedBuildInputs =
|
2016-09-05 17:59:00 +01:00
|
|
|
stdenv.lib.optional stdenv.isLinux systemd ++
|
2015-06-19 20:56:12 +01:00
|
|
|
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
2013-02-12 22:26:26 +00:00
|
|
|
|
2013-10-30 16:12:55 +00:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
|
2013-10-08 12:17:55 +01:00
|
|
|
|
2015-06-26 17:53:28 +01:00
|
|
|
preFixup = stdenv.lib.optionalString stdenv.isLinux ''
|
2016-09-05 17:59:00 +01:00
|
|
|
sed 's,-ludev,-L${systemd.lib}/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
|
|
|
};
|
2019-05-01 17:14:19 +01:00
|
|
|
} // stdenv.lib.optionalAttrs withStatic {
|
|
|
|
# Carefully added here to avoid a mass rebuild.
|
|
|
|
# Inline this the next time this package changes.
|
|
|
|
dontDisableStatic = withStatic;
|
|
|
|
})
|