depot/third_party/nixpkgs/pkgs/development/libraries/libchardet/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

25 lines
620 B
Nix

{ lib, stdenv, fetchFromGitHub, perl }:
stdenv.mkDerivation rec {
pname = "libchardet";
version = "1.0.5";
src = fetchFromGitHub {
owner = "Joungkyun";
repo = "libchardet";
rev = version;
sha256 = "0c1k5hf3ssh3cm72w2zpy5k73vhy1gyq5s9rqdawqqa4al8syyvn";
};
nativeBuildInputs = [ perl ];
enableParallelBuilding = true;
meta = with 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;
};
}