about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/pcre2
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/pcre2')
-rw-r--r--nixpkgs/pkgs/development/libraries/pcre2/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/pcre2/default.nix b/nixpkgs/pkgs/development/libraries/pcre2/default.nix
new file mode 100644
index 000000000000..b127eb0a31e2
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/pcre2/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  pname = "pcre2";
+  version = "10.35";
+  src = fetchurl {
+    url = "https://ftp.pcre.org/pub/pcre/${pname}-${version}.tar.bz2";
+    sha256 = "04s6kmk9qdd4rjz477h547j4bx7hfz0yalpvrm381rqc5ghaijww";
+  };
+
+  configureFlags = [
+    "--enable-pcre2-16"
+    "--enable-pcre2-32"
+  ] ++ stdenv.lib.optional (!stdenv.hostPlatform.isRiscV) "--enable-jit";
+
+  outputs = [ "bin" "dev" "out" "doc" "man" "devdoc" ];
+
+  doCheck = false; # fails 1 out of 3 tests, looks like a bug
+
+  postFixup = ''
+    moveToOutput bin/pcre2-config "$dev"
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Perl Compatible Regular Expressions";
+    homepage = "http://www.pcre.org/";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ ttuegel ];
+    platforms = platforms.all;
+  };
+}