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

                         
                       






                                                                    










                                                                   
                               

    
{ stdenv, fetchFromGitHub, perl }:

stdenv.mkDerivation rec {
  pname = "libchardet";
  version = "1.0.5";

  src = fetchFromGitHub {
    owner = "Joungkyun";
    repo = "libchardet";
    rev = version;
    sha256 = "0c1k5hf3ssh3cm72w2zpy5k73vhy1gyq5s9rqdawqqa4al8syyvn";
  };

  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;
  };
}