libchardet: added package
This commit is contained in:
parent
d9271891b9
commit
3bed4d44d5
2 changed files with 23 additions and 0 deletions
21
pkgs/development/libraries/libchardet/default.nix
Normal file
21
pkgs/development/libraries/libchardet/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{ stdenv, fetchurl, perl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libchardet-1.0.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "ftp://ftp.oops.org/pub/oops/libchardet/${name}.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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5251,6 +5251,8 @@ let
|
||||||
|
|
||||||
libchamplain_0_6 = callPackage ../development/libraries/libchamplain/0.6.nix {};
|
libchamplain_0_6 = callPackage ../development/libraries/libchamplain/0.6.nix {};
|
||||||
|
|
||||||
|
libchardet = callPackage ../development/libraries/libchardet { };
|
||||||
|
|
||||||
libchop = callPackage ../development/libraries/libchop { };
|
libchop = callPackage ../development/libraries/libchop { };
|
||||||
|
|
||||||
libcm = callPackage ../development/libraries/libcm { };
|
libcm = callPackage ../development/libraries/libcm { };
|
||||||
|
|
Loading…
Reference in a new issue