2019-05-01 18:14:19 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, systemd ? null, libobjc, IOKit, withStatic ? false }:
|
2010-09-26 21:39:02 +02:00
|
|
|
|
2019-05-01 18:14:19 +02:00
|
|
|
stdenv.mkDerivation (rec {
|
2018-03-26 02:31:39 +02:00
|
|
|
name = "libusb-1.0.22";
|
2010-09-26 21:39:02 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-29 10:04:14 +01:00
|
|
|
url = "mirror://sourceforge/libusb/${name}.tar.bz2";
|
2018-03-26 02:31:39 +02:00
|
|
|
sha256 = "0mw1a5ss4alg37m6bd4k44v35xwrcwp5qm4s686q1nsgkbavkbkm";
|
2010-09-26 21:39:02 +02:00
|
|
|
};
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ]; # get rid of propagating systemd closure
|
2015-04-19 00:48:52 +02:00
|
|
|
|
2017-09-05 23:25:26 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-06-19 21:56:12 +02:00
|
|
|
propagatedBuildInputs =
|
2016-09-05 18:59:00 +02:00
|
|
|
stdenv.lib.optional stdenv.isLinux systemd ++
|
2015-06-19 21:56:12 +02:00
|
|
|
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
2013-02-12 23:26:26 +01:00
|
|
|
|
2013-10-30 17:12:55 +01:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
|
2013-10-08 13:17:55 +02:00
|
|
|
|
2015-06-26 18:53:28 +02:00
|
|
|
preFixup = stdenv.lib.optionalString stdenv.isLinux ''
|
2016-09-05 18:59:00 +02:00
|
|
|
sed 's,-ludev,-L${systemd.lib}/lib -ludev,' -i $out/lib/libusb-1.0.la
|
2015-06-25 15:07:05 +02:00
|
|
|
'';
|
|
|
|
|
2018-10-11 14:30:10 +02: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 19:11:17 +02:00
|
|
|
maintainers = [ ];
|
2010-09-26 21:39:02 +02:00
|
|
|
};
|
2019-05-01 18:14:19 +02:00
|
|
|
} // stdenv.lib.optionalAttrs withStatic {
|
|
|
|
# Carefully added here to avoid a mass rebuild.
|
|
|
|
# Inline this the next time this package changes.
|
|
|
|
dontDisableStatic = withStatic;
|
|
|
|
})
|