Merge pull request #270395 from wineee/simdutf

simdutf: init at 4.0.5
This commit is contained in:
Emily Trau 2023-12-01 14:14:42 +11:00 committed by GitHub
commit 58b0be2b45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,40 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, libiconv
}:
stdenv.mkDerivation (finalAttrs: {
pname = "simdutf";
version = "4.0.5";
src = fetchFromGitHub {
owner = "simdutf";
repo = "simdutf";
rev = "v${finalAttrs.version}";
hash = "sha256-HNTVo/uB7UTCy5VVdmf6vka9T+htra7Vk7NF4hByGP4=";
};
# Fix build on darwin
postPatch = ''
substituteInPlace tools/CMakeLists.txt --replace "-Wl,--gc-sections" ""
'';
nativeBuildInputs = [
cmake
];
buildInputs = [
libiconv
];
meta = with lib; {
description = "Unicode routines validation and transcoding at billions of characters per second";
homepage = "https://github.com/simdutf/simdutf";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ rewine ];
mainProgram = "simdutf";
platforms = platforms.all;
};
})