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





                            
                                                                                  











                                                                    
                               

    
{ stdenv, fetchurl, perl }:

stdenv.mkDerivation rec {
  name = "libchardet-1.0.4";
  
  src = fetchurl {
    url = "http://yupmin.net/wp-content/uploads/2014/03/libchardet-1.0.4.tar.bz2";
    sha256 = "0cvwba4la25qw70ap8jd5r743a9jshqd26nnbh5ph68zj1imlgzl";
  };

  nativeBuildInputs = [ perl ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Mozilla's Universal Charset Detector C/C++ API";
    homepage = ftp://ftp.oops.org/pub/oops/libchardet/index.html;
    license = licenses.mpl11;
    maintainers = [ maintainers.abbradar ];
    platforms = platforms.unix;
  };
}