libftdi1: new package

This is the 1.x version of libftdi, as opposed to our existing libftdi
0.20 package.

(AVRDUDE is an (optional) dependee of libftdi1.)
wip/yesman
Bjørn Forsman 10 years ago
parent 9aac793c49
commit 6c8f4fd0ef
  1. 42
      pkgs/development/libraries/libftdi/1.x.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,42 @@
{ stdenv, fetchurl, cmake, pkgconfig, libusb1, confuse
, cppSupport ? true, boost ? null
, pythonSupport ? true, python ? null, swig ? null
, docSupport ? true, doxygen ? null
}:
assert cppSupport -> boost != null;
assert pythonSupport -> python != null && swig != null;
assert docSupport -> doxygen != null;
stdenv.mkDerivation rec {
name = "libftdi1-1.1";
src = fetchurl {
url = "http://www.intra2net.com/en/developer/libftdi/download/${name}.tar.bz2";
sha256 = "088yh8pxd6q53ssqndydcw1dkq51cjqyahc03lm6iip22cdazcf0";
};
buildInputs = with stdenv.lib; [ cmake pkgconfig confuse ]
++ optionals cppSupport [ boost ]
++ optionals pythonSupport [ python swig ]
++ optionals docSupport [ doxygen ];
propagatedBuildInputs = [ libusb1 ];
postInstall = ''
mkdir -p "$out/etc/udev/rules.d/"
cp ../packages/99-libftdi.rules "$out/etc/udev/rules.d/"
cp -r doc/man "$out/share/"
'' + stdenv.lib.optionalString docSupport ''
mkdir -p "$out/share/libftdi/doc/"
cp -r doc/html "$out/share/libftdi/doc/"
'';
meta = with stdenv.lib; {
description = "A library to talk to FTDI chips using libusb";
homepage = http://www.intra2net.com/en/developer/libftdi/;
license = with licenses; [ lgpl2 gpl2 ];
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}

@ -5085,6 +5085,8 @@ let
libftdi = callPackage ../development/libraries/libftdi { };
libftdi1 = callPackage ../development/libraries/libftdi/1.x.nix { };
libgcrypt = callPackage ../development/libraries/libgcrypt { };
libgcrypt_1_6 = lowPrio (callPackage ../development/libraries/libgcrypt/1.6.nix { });

Loading…
Cancel
Save