34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
{lib, stdenv, fetchurl, libusb-compat-0_1}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libftdi";
|
|
version = "0.20";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.intra2net.com/en/developer/libftdi/download/${pname}-${version}.tar.gz";
|
|
sha256 = "13l39f6k6gff30hsgh0wa2z422g9pyl91rh8a8zz6f34k2sxaxii";
|
|
};
|
|
|
|
buildInputs = [ libusb-compat-0_1 ];
|
|
|
|
propagatedBuildInputs = [ libusb-compat-0_1 ];
|
|
|
|
# Hack to avoid TMPDIR in RPATHs.
|
|
preFixup = ''rm -rf "$(pwd)" '';
|
|
configureFlags = lib.optional (!stdenv.isDarwin) "--with-async-mode";
|
|
|
|
# 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"
|
|
'';
|
|
|
|
meta = {
|
|
description = "A library to talk to FTDI chips using libusb";
|
|
homepage = "https://www.intra2net.com/en/developer/libftdi/";
|
|
license = lib.licenses.lgpl21;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|