easytier: 2.1.1 -> 2.1.2 (#376259)
[NixPkgs.git] / pkgs / by-name / li / libchardet / package.nix
blobba922c6f98cf08e4a27544a15a396fbee5d9b6ab
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   perl,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "libchardet";
11   version = "1.0.6";
13   src = fetchFromGitHub {
14     owner = "Joungkyun";
15     repo = "libchardet";
16     rev = version;
17     sha256 = "sha256-JhEiWM3q8X+eEBHxv8k9yYOaTGoJOzI+/iFYC0gZJJs=";
18   };
20   nativeBuildInputs = [
21     autoreconfHook
22     perl
23   ];
25   enableParallelBuilding = true;
27   meta = with lib; {
28     description = "Mozilla's Universal Charset Detector C/C++ API";
29     mainProgram = "chardet-config";
30     homepage = "ftp://ftp.oops.org/pub/oops/libchardet/index.html";
31     license = licenses.mpl11;
32     maintainers = [ maintainers.abbradar ];
33     platforms = platforms.unix;
34   };