summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-09-20 15:16:44 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-09-20 15:16:44 -0300
commit04b176df0093e4764cfddb87ff0e6c1de89312ec (patch)
tree446eaa0163f57e3966b927380b662be12c676235
parent1bb9a3e44a4ec6e874b46609a7885e32f211e71f (diff)
downloadnixpkgs-04b176df0093e4764cfddb87ff0e6c1de89312ec.tar
nixpkgs-04b176df0093e4764cfddb87ff0e6c1de89312ec.tar.gz
nixpkgs-04b176df0093e4764cfddb87ff0e6c1de89312ec.tar.bz2
nixpkgs-04b176df0093e4764cfddb87ff0e6c1de89312ec.tar.lz
nixpkgs-04b176df0093e4764cfddb87ff0e6c1de89312ec.tar.xz
nixpkgs-04b176df0093e4764cfddb87ff0e6c1de89312ec.tar.zst
nixpkgs-04b176df0093e4764cfddb87ff0e6c1de89312ec.zip
pcre2: 10.36 -> 10.37
-rw-r--r--pkgs/development/libraries/pcre2/default.nix17
1 files changed, 10 insertions, 7 deletions
diff --git a/pkgs/development/libraries/pcre2/default.nix b/pkgs/development/libraries/pcre2/default.nix
index 188fa9b16b7..dbf8f6b750f 100644
--- a/pkgs/development/libraries/pcre2/default.nix
+++ b/pkgs/development/libraries/pcre2/default.nix
@@ -1,30 +1,33 @@
-{ lib, stdenv, fetchurl }:
+{ lib
+, stdenv
+, fetchurl
+}:
 
 stdenv.mkDerivation rec {
   pname = "pcre2";
-  version = "10.36";
+  version = "10.37";
   src = fetchurl {
     url = "https://ftp.pcre.org/pub/pcre/${pname}-${version}.tar.bz2";
-    sha256 = "0p3699msps07p40g9426lvxa3b41rg7k2fn7qxl2jm0kh4kkkvx9";
+    hash = "sha256-TZWpbouAUpiTtFYr4SZI15i5V7G6Gq45YGu8KrlW0nA=";
   };
 
   # Disable jit on Apple Silicon, https://github.com/zherczeg/sljit/issues/51
   configureFlags = [
     "--enable-pcre2-16"
     "--enable-pcre2-32"
-  ] ++ lib.optional (!stdenv.hostPlatform.isRiscV && !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64)) "--enable-jit";
+  ] ++ lib.optional (!stdenv.hostPlatform.isRiscV &&
+                     !(stdenv.hostPlatform.isDarwin &&
+                       stdenv.hostPlatform.isAarch64)) "--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 lib; {
-    description = "Perl Compatible Regular Expressions";
     homepage = "http://www.pcre.org/";
+    description = "Perl Compatible Regular Expressions";
     license = licenses.bsd3;
     maintainers = with maintainers; [ ttuegel ];
     platforms = platforms.all;