nixpkgs/pkgs/development/libraries/libuchardet/default.nix
Charles Strahan 86629f7c7f libuchardet: new package
Yet another C wrapper for Mozilla's Universal Charset Detector C++ API.
2014-12-24 22:48:01 -05:00

24 lines
605 B
Nix

{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "libuchardet-${version}";
version = "0.0.1";
src = fetchFromGitHub {
owner = "BYVoid";
repo = "uchardet";
rev = "69b7133995e4ee260b093323c57a7f8c6c6803b8";
sha256 = "0yqrc9a7wxsh2fvigjppjp55v4r1q8p40yh048xsvl3kly2rkqy9";
};
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 ];
};
}