File tree Expand file tree Collapse file tree 4 files changed +38
-22
lines changed Expand file tree Collapse file tree 4 files changed +38
-22
lines changed Original file line number Diff line number Diff line change 75
75
cargo-pgrx = final . cargo-pgrx . cargo-pgrx_0_12_9 ;
76
76
} ;
77
77
78
+ buildPgrxExtension_0_14_3 = prev . buildPgrxExtension . override {
79
+ cargo-pgrx = final . cargo-pgrx . cargo-pgrx_0_14_3 ;
80
+ } ;
81
+
78
82
} )
79
83
( final : prev : {
80
84
postgresql = final . callPackage ./nix/postgresql/default.nix {
417
421
cargo-pgrx_0_11_3 = pkgs . cargo-pgrx . cargo-pgrx_0_11_3 ;
418
422
cargo-pgrx_0_12_6 = pkgs . cargo-pgrx . cargo-pgrx_0_12_6 ;
419
423
cargo-pgrx_0_12_9 = pkgs . cargo-pgrx . cargo-pgrx_0_12_9 ;
424
+ cargo-pgrx_0_14_3 = pkgs . cargo-pgrx . cargo-pgrx_0_14_3 ;
420
425
# PostgreSQL versions.
421
426
psql_15 = postgresVersions . psql_15 ;
422
427
psql_17 = postgresVersions . psql_17 ;
Original file line number Diff line number Diff line change 8
8
, rust-bin
9
9
} :
10
10
let
11
- rustVersion = "1.76.0 " ;
11
+ rustVersion = "1.85.1 " ;
12
12
rustPlatform = makeRustPlatform {
13
13
cargo = rust-bin . stable . ${ rustVersion } . default ;
14
14
rustc = rust-bin . stable . ${ rustVersion } . default ;
19
19
, cargoHash
20
20
} :
21
21
rustPlatform . buildRustPackage rec {
22
+ # rust-overlay uses 'cargo-auditable' wrapper for 'cargo' command, but it
23
+ # is using older version 0.18.1 of 'cargo_metadata' which doesn't support
24
+ # rust edition 2024, so we disable the 'cargo-auditable' just for now.
25
+ # ref: https://github.com/oxalica/rust-overlay/issues/153
26
+ auditable = false ;
22
27
pname = "cargo-pgrx" ;
23
28
inherit version ;
24
29
src = fetchCrate {
71
76
hash = "sha256-aR3DZAjeEEAjLQfZ0ZxkjLqTVMIEbU0UiZ62T4BkQq8=" ;
72
77
cargoHash = "sha256-53HKhvsKLTa2JCByLEcK3UzWXoM+LTatd98zvS1C9no=" ;
73
78
} ;
79
+ cargo-pgrx_0_14_3 = generic {
80
+ version = "0.14.3" ;
81
+ hash = "sha256-3TsNpEqNm3Uol5XPW1i0XEbP2fF2+RKB2d7lO6BDnvQ=" ;
82
+ cargoHash = "sha256-Ny7j56pwB+2eEK62X0nWfFKQy5fBz+Q1oyvecivxLkk=" ;
83
+ } ;
74
84
inherit rustPlatform ;
75
85
}
Original file line number Diff line number Diff line change 4
4
, openssl
5
5
, pkg-config
6
6
, postgresql
7
- , buildPgrxExtension_0_12_9
7
+ , buildPgrxExtension_0_14_3
8
8
, cargo
9
9
, darwin
10
10
, jq
15
15
rustVersion = "1.85.1" ;
16
16
cargo = rust-bin . stable . ${ rustVersion } . default ;
17
17
in
18
- buildPgrxExtension_0_12_9 rec {
18
+ buildPgrxExtension_0_14_3 rec {
19
+ auditable = false ;
19
20
pname = "supabase-wrappers" ;
20
21
version = "0.5.1" ;
21
22
# update the following array when the wrappers version is updated
@@ -66,7 +67,7 @@ buildPgrxExtension_0_12_9 rec {
66
67
allowBuiltinFetchGit = false ;
67
68
outputHashes = {
68
69
"clickhouse-rs-1.1.0-alpha.1" = "sha256-nKiGzdsAgJej8NgyVOqHaD1sZLrNF1RPfEhu2pRwZ6o" ;
69
- "iceberg-0.5.0" = "sha256-dYPZdpP7kcp49UxsCZrZi3xMJ4rJiB8H65dMMR9Z1Yk" ;
70
+ "iceberg-0.5.0" = "sha256-dYPZdpP7kcp49UxsCZrZi3xMJ4rJiB8H65dMMR9Z1Yk= " ;
70
71
} ;
71
72
} ;
72
73
You can’t perform that action at this time.
0 commit comments