nixpkgs/pkgs/development/libraries/libftdi/default.nix
Lluís Batlle i Rossell 36623b8227 Updating openocd and libftdi (for the sheevaplug jtag)
svn path=/nixpkgs/trunk/; revision=21139
2010-04-17 10:15:47 +00:00

21 lines
501 B
Nix

{stdenv, fetchurl, libusb}:
stdenv.mkDerivation rec {
name = "libftdi-0.17";
src = fetchurl {
url = "http://www.intra2net.com/en/developer/libftdi/download/${name}.tar.gz";
sha256 = "1w5bzq4h4v9qah9dx0wbz6w7ircr91ack0sh6wqs8s5b4m8jgh6m";
};
buildInputs = [ libusb ];
propagatedBuildInputs = [ libusb ];
meta = {
description = "A library to talk to FTDI chips using libusb";
homepage = http://www.intra2net.com/en/developer/libftdi/;
license = "LGPLv2.1";
};
}