2024-06-30 08:16:52 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
cmake,
|
|
|
|
ninja,
|
|
|
|
abseil-cpp,
|
2024-05-02 00:46:19 +00:00
|
|
|
# for passthru.tests
|
|
|
|
# , chromium
|
|
|
|
# , grpc
|
|
|
|
# , haskellPackages
|
|
|
|
# , mercurial
|
|
|
|
# , python3Packages
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "re2";
|
|
|
|
version = "2024-03-01";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "re2";
|
|
|
|
rev = version;
|
|
|
|
hash = "sha256-VuI9OsfGTdVywdyVfBrSzXSjbSfevne+YQ2oOz4R3DM=";
|
|
|
|
};
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
"dev"
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
ninja
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ abseil-cpp ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace re2Config.cmake.in \
|
|
|
|
--replace "\''${PACKAGE_PREFIX_DIR}/" ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Needed for case-insensitive filesystems (i.e. MacOS) because a file named
|
|
|
|
# BUILD already exists.
|
|
|
|
cmakeBuildDir = "build_dir";
|
|
|
|
|
|
|
|
cmakeFlags = lib.optional (!stdenv.hostPlatform.isStatic) "-DBUILD_SHARED_LIBS:BOOL=ON";
|
|
|
|
|
|
|
|
# This installs a pkg-config definition.
|
|
|
|
postInstall = ''
|
|
|
|
pushd "$src"
|
|
|
|
make common-install prefix="$dev" SED_INPLACE="sed -i"
|
|
|
|
popd
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
# passthru.tests = {
|
|
|
|
# inherit
|
|
|
|
# chromium
|
|
|
|
# grpc
|
|
|
|
# mercurial;
|
|
|
|
# inherit (python3Packages)
|
|
|
|
# fb-re2
|
|
|
|
# google-re2;
|
|
|
|
# haskell-re2 = haskellPackages.re2;
|
|
|
|
# };
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A 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";
|
2024-06-30 08:16:52 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
azahi
|
|
|
|
networkexception
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|