Skip to content

Commit

Permalink
postgresql: 16.4 -> 17.0
Browse files Browse the repository at this point in the history
As discussed in [1] this change is decoupled from the major version
update for the NixOS postgresql module.

[1]: https://github.com/NixOS/nixpkgs/pull/329611/files#r1701393693
  • Loading branch information
wolfgangwalther committed Oct 29, 2024
1 parent 793db95 commit 6336ff4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/web/kore/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{ lib, stdenv, fetchFromGitHub, openssl, curl, postgresql, yajl }:
{ lib, stdenv, fetchFromGitHub, openssl, curl, postgresql_16, yajl }:


stdenv.mkDerivation rec {
pname = "kore";
# TODO: Check on next update whether postgresql 17 is supported.
version = "4.2.3";

src = fetchFromGitHub {
Expand All @@ -12,7 +13,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-p0M2P02xwww5EnT28VnEtj5b+/jkPW3YkJMuK79vp4k=";
};

buildInputs = [ openssl curl postgresql yajl ];
buildInputs = [ openssl curl postgresql_16 yajl ];

makeFlags = [
"PREFIX=${placeholder "out"}"
Expand Down
4 changes: 2 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24856,8 +24856,8 @@ with pkgs;
postgresql_16_jit
postgresql_17_jit
;
postgresql = postgresql_16;
postgresql_jit = postgresql_16_jit;
postgresql = postgresql_17;
postgresql_jit = postgresql_17_jit;
postgresqlPackages = recurseIntoAttrs postgresql.pkgs;
postgresqlJitPackages = recurseIntoAttrs postgresql_jit.pkgs;
postgresql12Packages = recurseIntoAttrs postgresql_12.pkgs;
Expand Down

0 comments on commit 6336ff4

Please sign in to comment.