Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Upgrade pgrx extensions in prep for pg16 support #30

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions ext/pg_graphql.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

buildPgrxExtension rec {
pname = "pg_graphql";
version = "unstable-2023-08-01";
version = "unstable-1.4.0";
inherit postgresql;

src = fetchFromGitHub {
owner = "supabase";
repo = pname;
rev = "4ac0ca1c0c94f4a9ceccb4ffe81a6dedcd4c3686";
hash = "sha256-bAsb3/CFjWw9xUhKJD5/S/VBiSnFL6A8H0z5c4eB6GQ=";
rev = "v1.4.0";
hash = "sha256-vpMNN7xKCFCqCsMHNOpWbeNYfUCREszBLSxPl3iBFLM=";
};

cargoHash = "sha256-DOTujO3KH7AawB7qwHvWg6OeWTzWj3FxbRUQfapEJf4=";
cargoHash = "sha256-jB5cV6r4sf3TBlR9Zsrb7hZp25fIc0DcKvIetYut2ZU=";

# FIXME (aseipp): disable the tests since they try to install .control
# files into the wrong spot, aside from that the one main test seems
Expand Down
8 changes: 4 additions & 4 deletions ext/pg_jsonschema.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

buildPgrxExtension rec {
pname = "pg_jsonschema";
version = "unstable-2023-07-23";
version = "unstable-0.2.0";
inherit postgresql;

src = fetchFromGitHub {
owner = "supabase";
repo = pname;
rev = "13044b7e2ce720e13e91130b4ea674783cf4a583";
hash = "sha256-SxftRBWBZoDtF7mirKSavUJ/vZbWIC3TKy7L66uwQfc=";
rev = "v0.2.0";
hash = "sha256-57gZbUVi8P4EB8T0P19JBVXcetQcr6IxuIx96NNFA/0=";
};

cargoHash = "sha256-B0gn4DBryB9l27Hi2FMnSZfqwI/pAxCjr3f2t2+m8Og=";
cargoHash = "sha256-GXzoAOwDwGbHNWOJvaGdOvkU8L/ei703590ClkrDN+Y=";

# FIXME (aseipp): testsuite tries to write files into /nix/store; we'll have
# to fix this a bit later.
Expand Down
Loading