8 stdenv.mkDerivation rec {
20 url = "https://www.freedesktop.org/software/${pname}/releases/${pname}-${version}.tar.xz";
21 sha256 = "sha256-6Xpgz8AKHBR6Z0sJe7FCKr2fp4otnOPz/cwueKNKxfA=";
24 nativeBuildInputs = [ cmake ];
26 doCheck = !stdenv.hostPlatform.isi686; # tests fail on i686
29 description = "Mozilla's Universal Charset Detector C/C++ API";
30 mainProgram = "uchardet";
31 homepage = "https://www.freedesktop.org/wiki/Software/uchardet/";
32 license = licenses.mpl11;
34 platforms = with platforms; unix;