Skip to content

Commit

Permalink
Add postgresql 17
Browse files Browse the repository at this point in the history
  • Loading branch information
vlinkz committed Feb 4, 2025
1 parent cc5c777 commit e429af7
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 e429af7

Please sign in to comment.