File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 69
69
( import ./nix/overlays/cargo-pgrx-0-11-3.nix )
70
70
] ;
71
71
} ;
72
- postgresql_15 = pkgs . postgresql . postgresql_15 ;
73
72
sfcgal = pkgs . callPackage ./nix/ext/sfcgal/sfcgal.nix { } ;
74
73
supabase-groonga = pkgs . callPackage ./nix/supabase-groonga.nix { } ;
75
74
mecab-naist-jdic = pkgs . callPackage ./nix/ext/mecab-naist-jdic/default.nix { } ;
305
304
pkgs . callPackage ./nix/ext/pg_regress.nix {
306
305
postgresql = postgresqlPackage ;
307
306
} ;
308
-
307
+ postgresql_15 = getPostgresqlPackage "15" ;
309
308
in
310
309
postgresVersions // {
311
310
supabase-groonga = supabase-groonga ;
314
313
#psql_orioledb_16 = makeOrioleDbPostgres "16_23" postgresql_orioledb_16;
315
314
sfcgal = sfcgal ;
316
315
pg_prove = pkgs . perlPackages . TAPParserSourceHandlerpgTAP ;
317
- postgresql_15 = pkgs . postgresql_15 ;
318
-
316
+ inherit postgresql_15 ;
317
+ postgresql_15_debug = if pkgs . stdenv . isLinux then postgresql_15 . debug else null ;
319
318
postgresql_15_src = pkgs . stdenv . mkDerivation {
320
319
pname = "postgresql-15-src" ;
321
- version = pkgs . postgresql_15 . version ;
320
+ version = postgresql_15 . version ;
322
321
323
- src = pkgs . postgresql_15 . src ;
322
+ src = postgresql_15 . src ;
324
323
325
324
nativeBuildInputs = [ pkgs . bzip2 ] ;
326
325
You can’t perform that action at this time.
0 commit comments