2016-09-05 17:59:00 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, systemd ? null, libobjc, IOKit }:
|
2010-09-26 20:39:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-26 01:31:39 +01:00
|
|
|
name = "libusb-1.0.22";
|
2010-09-26 20:39:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-29 09:04:14 +00:00
|
|
|
url = "mirror://sourceforge/libusb/${name}.tar.bz2";
|
2018-03-26 01:31:39 +01:00
|
|
|
sha256 = "0mw1a5ss4alg37m6bd4k44v35xwrcwp5qm4s686q1nsgkbavkbkm";
|
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
|
|
|
};
|
|
|
|
}
|