File tree Expand file tree Collapse file tree 3 files changed +2
-13
lines changed Expand file tree Collapse file tree 3 files changed +2
-13
lines changed Original file line number Diff line number Diff line change 1
- postgres-version = " 15.6.1.108 "
1
+ postgres-version = " 15.6.1.109-rc1 "
Original file line number Diff line number Diff line change 15
15
ourSystems = with flake-utils . lib ; [
16
16
system . x86_64-linux
17
17
system . aarch64-linux
18
- system . aarch64-darwin
19
18
] ;
20
19
in
21
20
flake-utils . lib . eachSystem ourSystems ( system :
Original file line number Diff line number Diff line change 8
8
, runCommand
9
9
, coreutils
10
10
, gnugrep
11
- , gcc
12
11
} :
13
12
14
13
stdenv . mkDerivation ( finalAttrs : {
@@ -33,8 +32,6 @@ stdenv.mkDerivation (finalAttrs: {
33
32
34
33
nativeBuildInputs = [
35
34
perl
36
- ] ++ lib . optionals stdenv . isDarwin [
37
- gcc
38
35
] ;
39
36
40
37
buildInputs = [
@@ -50,13 +47,6 @@ stdenv.mkDerivation (finalAttrs: {
50
47
"SHLIB_LINK=-lv8"
51
48
"V8_OUTDIR=${ v8 } /lib"
52
49
] ;
53
- NIX_LDFLAGS = lib . optionalString ( stdenv . isDarwin && stdenv . isAarch64 )
54
- "-undefined dynamic_lookup" ;
55
-
56
- NIX_CFLAGS_COMPILE = lib . optionals ( stdenv . isDarwin && stdenv . isAarch64 ) [
57
- "-I${ v8 } /include"
58
- "-I${ postgresql } /include"
59
- ] ;
60
50
installFlags = [
61
51
# PGXS only supports installing to postgresql prefix so we need to redirect this
62
52
"DESTDIR=${ placeholder "out" } "
@@ -149,7 +139,7 @@ stdenv.mkDerivation (finalAttrs: {
149
139
description = "V8 Engine Javascript Procedural Language add-on for PostgreSQL" ;
150
140
homepage = "https://plv8.github.io/" ;
151
141
maintainers = with maintainers ; [ samrose ] ;
152
- platforms = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" ] ;
142
+ platforms = [ "x86_64-linux" "aarch64-linux" ] ;
153
143
license = licenses . postgresql ;
154
144
#broken = postgresql.jitSupport;
155
145
} ;
You can’t perform that action at this time.
0 commit comments