postgresql.pkgs.plv8: 3.1.5 -> 3.1.10

https://github.com/plv8/plv8/blob/v3.1.10/Changes

3.1.10 is currently not the latest version - 3.2.2 is. However, the 3.2 branch needs
more changes to build successfully. The update to 3.1.10 makes this package build
with postgresql_16 for now.
This commit is contained in:
Wolfgang Walther 2024-03-08 23:33:04 +01:00
parent 5a57e16d64
commit 81c32a6b33
No known key found for this signature in database
GPG Key ID: B39893FA5F65CAE1
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ index 38879cc..6e78eeb 100644
@@ -20,6 +20,7 @@ OBJS = $(SRCS:.cc=.o)
MODULE_big = plv8-$(PLV8_VERSION)
EXTENSION = plv8
PLV8_DATA = plv8.control plv8--$(PLV8_VERSION).sql $(wildcard upgrade/*.sql)
PLV8_DATA = plv8.control plv8--$(PLV8_VERSION).sql
+USE_SYSTEM_V8 = 0

View File

@ -12,13 +12,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "plv8";
version = "3.1.5";
version = "3.1.10";
src = fetchFromGitHub {
owner = "plv8";
repo = "plv8";
rev = "v${finalAttrs.version}";
hash = "sha256-LodC2eQJSm5fLckrjm2RuejZhmOyQMJTv9b0iPCnzKQ=";
hash = "sha256-g1A/XPC0dX2360Gzvmo9/FSQnM6Wt2K4eR0pH0p9fz4=";
};
patches = [