File tree Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 134
134
135
135
#Where we import and build the orioledb extension, we add on our custom extensions
136
136
# plus the orioledb option
137
- orioledbExtension = ourExtensions ++ [ ./nix/ext/orioledb.nix ] ;
137
+ #we're not using timescaledb in the orioledb version of supabase extensions
138
+ orioleFilteredExtensions = builtins . filter ( x : x != ./nix/ext/timescaledb.nix ) ourExtensions ;
139
+ orioledbExtension = orioleFilteredExtensions ++ [ ./nix/ext/orioledb.nix ] ;
138
140
139
141
#this var is a convenience setting to import the orioledb patched version of postgresql
140
142
postgresql_orioledb_16 = oriole_pkgs . postgresql_orioledb_16 ;
Original file line number Diff line number Diff line change @@ -6,17 +6,17 @@ stdenv.mkDerivation rec {
6
6
src = fetchFromGitHub {
7
7
owner = "orioledb" ;
8
8
repo = "orioledb" ;
9
- rev = "0dafcb1bc799e9af393094c122c1c3c630797222 " ;
10
- sha256 = "sha256-dsfDqUXkMeAkUI5l9+J09tsRZOGJVsqcKEVo5YAzMjU =" ;
9
+ rev = "bd8e32d0ebaafd0ea3ec3074233b65167f3b6fb7 " ;
10
+ sha256 = "sha256-bzH1SgPZ6q90HpqRsECY2XQPghEcd2Hg4X55G43unNo =" ;
11
11
} ;
12
- version = "patches16_30 " ;
12
+ version = "patches16_31 " ;
13
13
buildInputs = [ curl libkrb5 postgresql python3 openssl ] ;
14
- buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=30 " ;
14
+ buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=31 " ;
15
15
installPhase = ''
16
16
runHook preInstall
17
17
mkdir -p $out/{lib,share/postgresql/extension}
18
18
19
- cp *.so $out/lib
19
+ cp *${ postgresql . dlSuffix } $out/lib
20
20
cp *.sql $out/share/postgresql/extension
21
21
cp *.control $out/share/postgresql/extension
22
22
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_30 " ;
4
+ version = "16_31 " ;
5
5
src = prev . fetchurl {
6
- url = "https://github.com/orioledb/postgres/archive/refs/tags/patches16_30 .tar.gz" ;
7
- sha256 = "sha256-VITYbOZYKgbtstdfG2wl7+wV+tl/DDYB34BkIM/Xnvs =" ;
6
+ url = "https://github.com/orioledb/postgres/archive/refs/tags/patches16_31 .tar.gz" ;
7
+ sha256 = "sha256-29uHUACwZKh8e4zJ9tWzEhLNjEuh6P31KbpxnMEhtuI =" ;
8
8
} ;
9
9
buildInputs = old . buildInputs ++ [
10
10
prev . bison
You can’t perform that action at this time.
0 commit comments