Skip to content

Commit b6fdd11

Browse files
committed
test: working through build compat for oriole
1 parent ce43530 commit b6fdd11

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

nix/ext/orioledb.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ stdenv.mkDerivation rec {
66
src = fetchFromGitHub {
77
owner = "orioledb";
88
repo = "orioledb";
9-
rev = "main";
10-
sha256 = "sha256-VWjb2JHYad0VZkId70m8UOhRTJRGY4nkEuC7m5ae7w4=";
9+
rev = "0dafcb1bc799e9af393094c122c1c3c630797222";
10+
sha256 = "sha256-dsfDqUXkMeAkUI5l9+J09tsRZOGJVsqcKEVo5YAzMjU=";
1111
};
12-
version = "patches16_29";
12+
version = "patches16_30";
1313
buildInputs = [ curl libkrb5 postgresql python3 openssl ];
14-
buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=29";
14+
buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=30";
1515
installPhase = ''
1616
runHook preInstall
1717
mkdir -p $out/{lib,share/postgresql/extension}

nix/overlays/psql_16-oriole.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
final: prev: {
22
postgresql_16 = prev.postgresql_16.overrideAttrs (old: {
33
pname = "postgresql_16";
4-
version = "16_29";
4+
version = "16_30";
55
src = prev.fetchurl {
6-
url = "https://github.com/orioledb/postgres/archive/refs/tags/patches16_29.tar.gz";
7-
sha256 = "sha256-JiC4upjta7OWOfnuxgo/KL41tWcsBUyykOJakn6XjvA=";
6+
url = "https://github.com/orioledb/postgres/archive/refs/tags/patches16_30.tar.gz";
7+
sha256 = "sha256-VITYbOZYKgbtstdfG2wl7+wV+tl/DDYB34BkIM/Xnvs=";
88
};
99
buildInputs = old.buildInputs ++ [
1010
prev.bison

0 commit comments

Comments
 (0)