There was an error while loading. Please reload this page.
1 parent acf18e8 commit 5679494Copy full SHA for 5679494
nix/ext/pg_jsonschema/default.nix
@@ -6,6 +6,7 @@
6
fetchFromGitHub,
7
postgresql,
8
rust-bin,
9
+ darwin,
10
}:
11
let
12
pname = "pg_jsonschema";
@@ -42,7 +43,9 @@ let
42
43
"";
44
45
nativeBuildInputs = [ cargo ];
- buildInputs = [ postgresql ];
46
+ buildInputs = [
47
+ postgresql
48
+ ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ];
49
# update the following array when the pg_jsonschema version is updated
50
# required to ensure that extensions update scripts from previous versions are generated
51
0 commit comments