mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{ 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.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.intra2net.com/en/developer/libftdi/download/${name}.tar.bz2";
|
|
sha256 = "0x0vncf6i92slgrn0h7ghkskqbglbs534220qa84d0qg114zndpc";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = with stdenv.lib; [ cmake 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 = https://www.intra2net.com/en/developer/libftdi/;
|
|
license = with licenses; [ lgpl2 gpl2 ];
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|