Skip to content

Commit 969f217

Browse files
authored
Merge pull request #428 from replit/vlinkz/postgres17
Add postgresql 17
2 parents cc5c777 + e429af7 commit 969f217

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

pkgs/modules/default.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,12 @@ let
8989
(import ./lua)
9090
(import ./nix)
9191
(import ./php)
92-
(import ./postgresql)
92+
(import ./postgresql {
93+
postgresql = pkgs.postgresql_16;
94+
})
95+
(import ./postgresql {
96+
postgresql = pkgs.postgresql_17;
97+
})
9398
(import ./qbasic)
9499
(import ./R)
95100
(import ./replit)

pkgs/modules/postgresql/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
{ postgresql }:
12
{ pkgs, lib, ... }:
23
let
3-
postgresql = pkgs.postgresql_16;
44
postgresql-version = lib.versions.major postgresql.version;
55
in
66
{

0 commit comments

Comments
 (0)