2016-09-05 09:59:00 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, systemd ? null, libobjc, IOKit }:
|
2010-09-26 12:39:02 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-25 17:31:39 -07:00
|
|
|
name = "libusb-1.0.22";
|
2010-09-26 12:39:02 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-29 02:04:14 -07:00
|
|
|
url = "mirror://sourceforge/libusb/${name}.tar.bz2";
|
2018-03-25 17:31:39 -07:00
|
|
|
sha256 = "0mw1a5ss4alg37m6bd4k44v35xwrcwp5qm4s686q1nsgkbavkbkm";
|
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
|
|
|
|
2017-09-05 14:25:26 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-06-19 12:56:12 -07:00
|
|
|
propagatedBuildInputs =
|
2016-09-05 09:59:00 -07:00
|
|
|
stdenv.lib.optional stdenv.isLinux systemd ++
|
2015-06-19 12:56:12 -07:00
|
|
|
stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ];
|
2013-02-12 14:26:26 -08:00
|
|
|
|
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
|
|
|
|
2015-06-26 09:53:28 -07:00
|
|
|
preFixup = stdenv.lib.optionalString stdenv.isLinux ''
|
2016-09-05 09:59:00 -07:00
|
|
|
sed 's,-ludev,-L${systemd.lib}/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
|
|
|
};
|
|
|
|
}
|