nixpkgs/pkgs/development/libraries/pcre2/default.nix
Alyssa Ross eb54b64187 Revert "pcre2: fix build for loongarch64"
This reverts commit 00725d8642.

As anticipated, the new pcre2 release fixes building the JIT for
loongarch64.
2024-06-15 08:02:06 +02:00

48 lines
1.3 KiB
Nix

{ lib
, stdenv
, fetchurl
, updateAutotoolsGnuConfigScriptsHook
, withJitSealloc ? true
}:
stdenv.mkDerivation rec {
pname = "pcre2";
version = "10.44";
src = fetchurl {
url = "https://github.com/PhilipHazel/pcre2/releases/download/pcre2-${version}/pcre2-${version}.tar.bz2";
hash = "sha256-008C4RPPcZOh6/J3DTrFJwiNSF1OBH7RDl0hfG713pY=";
};
nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ];
configureFlags = [
"--enable-pcre2-16"
"--enable-pcre2-32"
# only enable jit on supported platforms which excludes Apple Silicon, see https://github.com/zherczeg/sljit/issues/51
"--enable-jit=${if stdenv.hostPlatform.isS390x then "no" else "auto"}"
]
# fix pcre jit in systemd units that set MemoryDenyWriteExecute=true like gitea
++ lib.optional withJitSealloc "--enable-jit-sealloc";
outputs = [ "bin" "dev" "out" "doc" "man" "devdoc" ];
postFixup = ''
moveToOutput bin/pcre2-config "$dev"
'';
meta = with lib; {
homepage = "https://www.pcre.org/";
description = "Perl Compatible Regular Expressions";
license = licenses.bsd3;
maintainers = with maintainers; [ ttuegel ];
platforms = platforms.all;
pkgConfigModules = [
"libpcre2-posix"
"libpcre2-8"
"libpcre2-16"
"libpcre2-32"
];
};
}