nixpkgs/pkgs/development/libraries/libchardet/default.nix

23 lines
606 B
Nix
Raw Normal View History

2014-09-14 18:33:43 +00:00
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
name = "libchardet-1.0.4";
src = fetchurl {
2015-07-28 08:36:21 +00:00
url = "http://yupmin.net/wp-content/uploads/2014/03/libchardet-1.0.4.tar.bz2";
2014-09-14 18:33:43 +00:00
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;
2014-09-14 18:33:43 +00:00
};
}