File tree Expand file tree Collapse file tree 2 files changed +15
-9
lines changed Expand file tree Collapse file tree 2 files changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ postgres_major:
9
9
10
10
# Full version strings for each major version
11
11
postgres_release :
12
- postgresorioledb-17 : " 17.0.1.017 -orioledb"
13
- postgres15 : " 15.8.1.027 "
14
- postgres16 : " 16.3.1.033 "
12
+ postgresorioledb-17 : " 17.0.1.018 -orioledb-staging "
13
+ postgres15 : " 15.8.1.028 "
14
+ postgres16 : " 16.3.1.034 "
15
15
16
16
# Non Postgres Extensions
17
17
pgbouncer_release : " 1.19.0"
Original file line number Diff line number Diff line change @@ -6,19 +6,25 @@ stdenv.mkDerivation rec {
6
6
src = fetchFromGitHub {
7
7
owner = "orioledb" ;
8
8
repo = "orioledb" ;
9
- rev = "beta8 " ;
10
- sha256 = "sha256-niyTQr1FQYEsKdxl/uVrKSiIR0DCnnT+DDkW47lsc80 =" ;
9
+ rev = "beta9 " ;
10
+ sha256 = "sha256-z2EHWsY+hhtnYzAxOl2PWjqfyJ+wp9SCau5LKPT2ec0 =" ;
11
11
} ;
12
- version = "beta8 " ;
12
+ version = "beta9 " ;
13
13
buildInputs = [ curl libkrb5 postgresql python3 openssl ] ;
14
14
buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=5" ;
15
15
installPhase = ''
16
16
runHook preInstall
17
+
17
18
mkdir -p $out/{lib,share/postgresql/extension}
18
19
19
- cp *${ postgresql . dlSuffix } $out/lib
20
- cp *.sql $out/share/postgresql/extension
21
- cp *.control $out/share/postgresql/extension
20
+ # Copy the extension library
21
+ cp orioledb${ postgresql . dlSuffix } $out/lib/
22
+
23
+ # Copy sql files from the sql directory
24
+ cp sql/*.sql $out/share/postgresql/extension/
25
+
26
+ # Copy control file
27
+ cp orioledb.control $out/share/postgresql/extension/
22
28
23
29
runHook postInstall
24
30
'' ;
You can’t perform that action at this time.
0 commit comments