2020-04-28 05:29:39 +02:00
|
|
|
{stdenv, fetchurl, libusb-compat-0_1}:
|
2009-09-24 23:28:27 +02:00
|
|
|
|
2019-08-20 19:56:45 +02:00
|
|
|
with stdenv; mkDerivation rec {
|
2013-05-10 13:34:59 +02:00
|
|
|
name = "libftdi-0.20";
|
2018-03-20 00:01:52 +01:00
|
|
|
|
2009-09-24 23:28:27 +02:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://www.intra2net.com/en/developer/libftdi/download/${name}.tar.gz";
|
2013-05-10 13:34:59 +02:00
|
|
|
sha256 = "13l39f6k6gff30hsgh0wa2z422g9pyl91rh8a8zz6f34k2sxaxii";
|
2009-09-24 23:28:27 +02:00
|
|
|
};
|
|
|
|
|
2020-04-28 05:29:39 +02:00
|
|
|
buildInputs = [ libusb-compat-0_1 ];
|
2009-09-24 23:28:27 +02:00
|
|
|
|
2020-04-28 05:29:39 +02:00
|
|
|
propagatedBuildInputs = [ libusb-compat-0_1 ];
|
2009-09-24 23:28:27 +02:00
|
|
|
|
2017-05-16 16:35:52 +02:00
|
|
|
# Hack to avoid TMPDIR in RPATHs.
|
|
|
|
preFixup = ''rm -rf "$(pwd)" '';
|
2019-11-20 10:17:54 +01:00
|
|
|
configureFlags = lib.optional (!isDarwin) "--with-async-mode";
|
2018-02-21 08:24:36 +01:00
|
|
|
|
|
|
|
# allow async mode. from ubuntu. see:
|
|
|
|
# https://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/libftdi/trusty/view/head:/debian/patches/04_async_mode.diff
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace ./src/ftdi.c \
|
|
|
|
--replace "ifdef USB_CLASS_PTP" "if 0"
|
|
|
|
'';
|
2017-05-16 16:35:52 +02:00
|
|
|
|
2009-09-24 23:28:27 +02:00
|
|
|
meta = {
|
|
|
|
description = "A library to talk to FTDI chips using libusb";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.intra2net.com/en/developer/libftdi/";
|
2019-08-20 19:56:45 +02:00
|
|
|
license = lib.licenses.lgpl21;
|
|
|
|
platforms = lib.platforms.all;
|
2009-09-24 23:28:27 +02:00
|
|
|
};
|
|
|
|
}
|