Skip to content

Commit

Permalink
Merge pull request #428 from replit/vlinkz/postgres17
Browse files Browse the repository at this point in the history
Add postgresql 17
  • Loading branch information
vlinkz authored Feb 4, 2025
2 parents cc5c777 + e429af7 commit 969f217
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion pkgs/modules/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ let
(import ./lua)
(import ./nix)
(import ./php)
(import ./postgresql)
(import ./postgresql {
postgresql = pkgs.postgresql_16;
})
(import ./postgresql {
postgresql = pkgs.postgresql_17;
})
(import ./qbasic)
(import ./R)
(import ./replit)
Expand Down
2 changes: 1 addition & 1 deletion pkgs/modules/postgresql/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ postgresql }:
{ pkgs, lib, ... }:
let
postgresql = pkgs.postgresql_16;
postgresql-version = lib.versions.major postgresql.version;
in
{
Expand Down

0 comments on commit 969f217

Please sign in to comment.