Unverified Commit 4cc45342 authored by Wolfgang Walther's avatar Wolfgang Walther
Browse files

postgresql_17: init at 17.0

parent 9789c756
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
import ./generic.nix {
  version = "17.0";
  hash = "sha256-fidhMcD91rYliNutmzuyS4w0mNUAkyjbpZrxboGRCd4=";
  # TODO: Add dont-use-locale-a-on-musl.patch once Alpine Linux has PostgreSQL 17.
  # MR in: https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/72853
}
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@ let
    postgresql_14 = ./14.nix;
    postgresql_15 = ./15.nix;
    postgresql_16 = ./16.nix;
    postgresql_17 = ./17.nix;
  };

  mkAttributes = jitSupport:
+4 −0
Original line number Diff line number Diff line
@@ -2,6 +2,10 @@

let
  source = {
    "17" = {
      version = "1.7.0";
      hash = "sha256-MNQMePDmGxC8OFIJuVJrhfgU566vkng00+tjeGpGKvs=";
    };
    "16" = {
      version = "1.6.0";
      hash = "sha256-lg7N0QblluTgtNo1tGZjirNJSyQXtcAEs9Jqd3zx0Sg=";
+4 −0
Original line number Diff line number Diff line
@@ -21,6 +21,10 @@ with {
    version = "1.5";
    sha256 = "sha256-RRSpkWLFuif+6RCncnsb1NnjKnIIRY9KgebKkjCN5cs=";
  };
  "17" = {
    version = "1.5";
    sha256 = "sha256-RRSpkWLFuif+6RCncnsb1NnjKnIIRY9KgebKkjCN5cs=";
  };
}."${lib.versions.major postgresql.version}" or (throw "pg_safeupdate: version specification for pg ${postgresql.version} missing.");

stdenv.mkDerivation rec {
+4 −0
Original line number Diff line number Diff line
@@ -2,6 +2,10 @@

let
  source = {
    "17" = {
      version = "17.0";
      hash = "sha256-3ksq09wiudQPuBQI3dhEQi8IkXKLVIsPFgBnwLiicro=";
    };
    "16" = {
      version = "16.0";
      hash = "sha256-8+tGOl1U5y9Zgu+9O5UDDE4bec4B0JC/BQ6GLhHzQzc=";
Loading