mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
libchardet: added package
This commit is contained in:
parent
d9271891b9
commit
3bed4d44d5
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 {};
|
||||
|
||||
libchardet = callPackage ../development/libraries/libchardet { };
|
||||
|
||||
libchop = callPackage ../development/libraries/libchop { };
|
||||
|
||||
libcm = callPackage ../development/libraries/libcm { };
|
||||
|
Loading…
Reference in New Issue
Block a user