mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
24 lines
576 B
Nix
24 lines
576 B
Nix
{ stdenv, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libuchardet-${version}";
|
|
|
|
version = "0.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BYVoid";
|
|
repo = "uchardet";
|
|
rev = "v${version}";
|
|
sha256 = "0rkym5bhq3hn7623fy0fggw0qaghha71k8bi41ywqd2lchpahrrm";
|
|
};
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Mozilla's Universal Charset Detector C/C++ API";
|
|
homepage = https://www.byvoid.com/zht/project/uchardet;
|
|
license = licenses.mpl11;
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
};
|
|
}
|