We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 259b4ff commit 65cee89Copy full SHA for 65cee89
pkgs/servers/sql/postgresql/ext/citus.nix
@@ -1,6 +1,7 @@
1
{
2
curl,
3
fetchFromGitHub,
4
+ fetchpatch,
5
lib,
6
lz4,
7
postgresql,
@@ -19,6 +20,16 @@ postgresqlBuildExtension rec {
19
20
hash = "sha256-SuJs6OCHKO7efQagsATgn/V9rgMyuXQIHGCEP9ME7tQ=";
21
};
22
23
+ patches = [
24
+ # Even though this commit is on main since Sep 2023, it hasn't made its way to the release-13.0 branch, yet.
25
+ # https://github.com/citusdata/citus/pull/7221
26
+ # Fixes build for PG 16 + 17 on darwin
27
+ (fetchpatch {
28
+ url = "https://github.com/citusdata/citus/commit/0f28a69f12418d211ffba5f7ddd222fd0c47daeb.patch";
29
+ hash = "sha256-8JAM+PUswzbdlAZUpRApgO0eBsMbUHFdFGsdATsG88I=";
30
+ })
31
+ ];
32
+
33
buildInputs = [
34
curl
35
lz4
0 commit comments