depot/third_party/nixpkgs/pkgs/by-name/si/simdutf/package.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

40 lines
850 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, libiconv
}:
stdenv.mkDerivation (finalAttrs: {
pname = "simdutf";
version = "5.5.0";
src = fetchFromGitHub {
owner = "simdutf";
repo = "simdutf";
rev = "v${finalAttrs.version}";
hash = "sha256-LEXx/b0DJZ9xxQX9+4YHjQCLFp2aXCE78Z6iPlXJjAw=";
};
# 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;
};
})