File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 37
37
# pull them from the overlays/ directory automatically, but we don't
38
38
# want to have an arbitrary order, since it might matter. being
39
39
# explicit is better.
40
- ( import ./nix/overlays/cargo-pgrx.nix )
40
+ ( import ./nix/overlays/cargo-pgrx-0-11-3 .nix )
41
41
( import ./nix/overlays/psql_16-oriole.nix )
42
42
43
43
] ;
289
289
postgresVersions = {
290
290
psql_15 = makePostgres "15" ;
291
291
psql_16 = makePostgres "16" ;
292
- # psql_orioledb_16 = makeOrioleDbPostgres "16_23 " postgresql_orioledb_16;
292
+ psql_orioledb_16 = makeOrioleDbPostgres "16_29 " postgresql_orioledb_16 ;
293
293
} ;
294
294
295
295
# Find the active PostgreSQL version
311
311
# PostgreSQL versions.
312
312
psql_15 = postgresVersions . psql_15 ;
313
313
psql_16 = postgresVersions . psql_16 ;
314
- # psql_orioledb_16 = makeOrioleDbPostgres "16_23" postgresql_orioledb_16 ;
314
+ psql_orioledb_16 = postgresVersions . psql_orioledb_16 ;
315
315
sfcgal = sfcgal ;
316
316
pg_prove = pkgs . perlPackages . TAPParserSourceHandlerpgTAP ;
317
317
inherit postgresql_15 postgresql_16 ;
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ stdenv.mkDerivation rec {
7
7
owner = "orioledb" ;
8
8
repo = "orioledb" ;
9
9
rev = "main" ;
10
- sha256 = "sha256-QbDp9S8JXO66sfaHZIQ3wFCVRxsAaaNSRgC6hvL3EKY =" ;
10
+ sha256 = "sha256-VWjb2JHYad0VZkId70m8UOhRTJRGY4nkEuC7m5ae7w4 =" ;
11
11
} ;
12
- version = "patches16_23 " ;
12
+ version = "patches16_29 " ;
13
13
buildInputs = [ curl libkrb5 postgresql python3 openssl ] ;
14
- buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=23 " ;
14
+ buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=29 " ;
15
15
installPhase = ''
16
16
runHook preInstall
17
17
mkdir -p $out/{lib,share/postgresql/extension}
Original file line number Diff line number Diff line change 1
1
final : prev : {
2
2
postgresql_16 = prev . postgresql_16 . overrideAttrs ( old : {
3
3
pname = "postgresql_16" ;
4
- version = "16_23 " ;
4
+ version = "16_29 " ;
5
5
src = prev . fetchurl {
6
- url = "https://github.com/orioledb/postgres/archive/refs/tags/patches16_23 .tar.gz" ;
7
- sha256 = "sha256-xWmcqn3DYyBG0FsBNqPWTFzUidSJZgoPWI6Rt0N9oJ4 =" ;
6
+ url = "https://github.com/orioledb/postgres/archive/refs/tags/patches16_29 .tar.gz" ;
7
+ sha256 = "sha256-JiC4upjta7OWOfnuxgo/KL41tWcsBUyykOJakn6XjvA =" ;
8
8
} ;
9
9
buildInputs = old . buildInputs ++ [
10
10
prev . bison
You can’t perform that action at this time.
0 commit comments