f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
77 lines
1.5 KiB
Nix
77 lines
1.5 KiB
Nix
{
|
|
abseil-cpp,
|
|
chromium,
|
|
cmake,
|
|
fetchFromGitHub,
|
|
gbenchmark,
|
|
grpc,
|
|
gtest,
|
|
haskellPackages,
|
|
icu,
|
|
lib,
|
|
mercurial,
|
|
ninja,
|
|
python3Packages,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "re2";
|
|
version = "2024-06-01";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "re2";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-iQETsjdIFcYM5I/W8ytvV3z/4va6TaZ/+KkSjb8CtF0=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
];
|
|
|
|
buildInputs = lib.optionals finalAttrs.doCheck [
|
|
gbenchmark
|
|
gtest
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
abseil-cpp
|
|
icu
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "RE2_BUILD_TESTING" finalAttrs.doCheck)
|
|
(lib.cmakeBool "RE2_USE_ICU" true)
|
|
] ++ lib.optional (!stdenv.hostPlatform.isStatic) (lib.cmakeBool "BUILD_SHARED_LIBS" true);
|
|
|
|
doCheck = true;
|
|
|
|
passthru.tests = {
|
|
inherit chromium grpc mercurial;
|
|
inherit (python3Packages) fb-re2 google-re2;
|
|
haskell-re2 = haskellPackages.re2;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Regular expression library";
|
|
longDescription = ''
|
|
RE2 is a fast, safe, thread-friendly alternative to backtracking regular
|
|
expression engines like those used in PCRE, Perl, and Python. It is a C++
|
|
library.
|
|
'';
|
|
license = licenses.bsd3;
|
|
homepage = "https://github.com/google/re2";
|
|
maintainers = with maintainers; [
|
|
azahi
|
|
networkexception
|
|
];
|
|
platforms = platforms.all;
|
|
};
|
|
})
|