nixpkgs/pkgs/development/libraries/libchardet/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

23 lines
606 B
Nix

{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
name = "libchardet-1.0.4";
src = fetchurl {
url = "http://yupmin.net/wp-content/uploads/2014/03/libchardet-1.0.4.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 ];
platforms = platforms.unix;
};
}