summary refs log blame commit diff
path: root/pkgs/development/libraries/libftdi/default.nix
blob: 6293632452ceaf74b725a83156fdba30aed3dfdb (plain) (tree)
1
2
3
4
5
6
7
8


                           
                        


                                                                                  
                                                                    








                                                                 
                                         

    
{stdenv, fetchurl, libusb}:

stdenv.mkDerivation rec {
  name = "libftdi-0.20";
  
  src = fetchurl {
    url = "http://www.intra2net.com/en/developer/libftdi/download/${name}.tar.gz";
    sha256 = "13l39f6k6gff30hsgh0wa2z422g9pyl91rh8a8zz6f34k2sxaxii";
  };

  buildInputs = [ libusb ];

  propagatedBuildInputs = [ libusb ];

  meta = {
    description = "A library to talk to FTDI chips using libusb";
    homepage = http://www.intra2net.com/en/developer/libftdi/;
    license = stdenv.lib.licenses.lgpl21;
  };
}