Skip to content

Commit

Permalink
Merge #215557: postgresql: 15.2, 14.7, 13.10, 12.14, and 11.19
Browse files Browse the repository at this point in the history
...into staging-next
  • Loading branch information
vcunat committed Feb 10, 2023
2 parents bff8e74 + 940b7d4 commit 123c88b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pkgs/servers/sql/postgresql/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -207,45 +207,45 @@ let
in self: {

postgresql_11 = self.callPackage generic {
version = "11.18";
version = "11.19";
psqlSchema = "11.1"; # should be 11, but changing it is invasive
hash = "sha256-0k8g78UukYrPvMoh6c6ijg4mO4RqDECPz6w7PEoPdQQ=";
hash = "sha256-ExCeK3HxE5QFwnIB2jczphrOcu4cIo2cnwMg4GruFMI=";
this = self.postgresql_11;
thisAttr = "postgresql_11";
inherit self;
};

postgresql_12 = self.callPackage generic {
version = "12.13";
version = "12.14";
psqlSchema = "12";
hash = "sha256-tsYjBGr0VI8RqEtAeTTWddEe0HDHk9FbBGg79fMi4C0=";
hash = "sha256-eFYQI304LIQtNW40cTjljAb/6uJA5swLUqxevMMNBD4=";
this = self.postgresql_12;
thisAttr = "postgresql_12";
inherit self;
};

postgresql_13 = self.callPackage generic {
version = "13.9";
version = "13.10";
psqlSchema = "13";
hash = "sha256-7xlmwKXkn77TNwrSgkkoy2sRZGF67q4WBtooP38zpBU=";
hash = "sha256-W7z1pW2FxE86iwWPtGhi/0nLyRg00H4pXQLm3jwhbfI=";
this = self.postgresql_13;
thisAttr = "postgresql_13";
inherit self;
};

postgresql_14 = self.callPackage generic {
version = "14.6";
version = "14.7";
psqlSchema = "14";
hash = "sha256-UIhA/BgJ05q3InTV8Tfau5/X+0+TPaQWiu67IAae3yI=";
hash = "sha256-zvYPAJj6gQHBVG9CVORbcir1QxM3lFs3ryBwB2MNszE=";
this = self.postgresql_14;
thisAttr = "postgresql_14";
inherit self;
};

postgresql_15 = self.callPackage generic {
version = "15.1";
version = "15.2";
psqlSchema = "15";
hash = "sha256-ZP3yPXNK+tDf5Ad9rKlqxR3NaX5ori09TKbEXLFOIa4=";
hash = "sha256-maIXH8PWtbX1a3V6ejy4XVCaOOQnOAXe8jlB7SuEaMc=";
this = self.postgresql_15;
thisAttr = "postgresql_15";
inherit self;
Expand Down

0 comments on commit 123c88b

Please sign in to comment.