lol

Merge pull request #200649 from marsam/update-postgresql

postgresql: 11.17 -> 11.18, 12.12 -> 12.13, 13.8 -> 13.9, 14.5 -> 14.6, 15.0 -> 15.1

authored by

Mario Rodas and committed by
GitHub
1129b8d0 52ea67a4

+10 -10
+10 -10
pkgs/servers/sql/postgresql/default.nix
··· 204 204 in self: { 205 205 206 206 postgresql_11 = self.callPackage generic { 207 - version = "11.17"; 207 + version = "11.18"; 208 208 psqlSchema = "11.1"; # should be 11, but changing it is invasive 209 - hash = "sha256-bphJY64HZeYVd5lRA6fmWU2w8L0BUorBI+DeSmpMtMQ="; 209 + hash = "sha256-0k8g78UukYrPvMoh6c6ijg4mO4RqDECPz6w7PEoPdQQ="; 210 210 this = self.postgresql_11; 211 211 thisAttr = "postgresql_11"; 212 212 inherit self; 213 213 }; 214 214 215 215 postgresql_12 = self.callPackage generic { 216 - version = "12.12"; 216 + version = "12.13"; 217 217 psqlSchema = "12"; 218 - hash = "sha256-NLPxxpQI4iBowMcbGCdpHxyJFTsK1XbBpE+JIKhYA5w="; 218 + hash = "sha256-tsYjBGr0VI8RqEtAeTTWddEe0HDHk9FbBGg79fMi4C0="; 219 219 this = self.postgresql_12; 220 220 thisAttr = "postgresql_12"; 221 221 inherit self; 222 222 }; 223 223 224 224 postgresql_13 = self.callPackage generic { 225 - version = "13.8"; 225 + version = "13.9"; 226 226 psqlSchema = "13"; 227 - hash = "sha256-c4dv3TpRcIc0BFjcpM4VuNKk286zNMBEFCRVGubEze0="; 227 + hash = "sha256-7xlmwKXkn77TNwrSgkkoy2sRZGF67q4WBtooP38zpBU="; 228 228 this = self.postgresql_13; 229 229 thisAttr = "postgresql_13"; 230 230 inherit self; 231 231 }; 232 232 233 233 postgresql_14 = self.callPackage generic { 234 - version = "14.5"; 234 + version = "14.6"; 235 235 psqlSchema = "14"; 236 - hash = "sha256-1PcstfuFfJqfdeyM8JGhdxJygC8hePCy5lt7b/ZPSjA="; 236 + hash = "sha256-UIhA/BgJ05q3InTV8Tfau5/X+0+TPaQWiu67IAae3yI="; 237 237 this = self.postgresql_14; 238 238 thisAttr = "postgresql_14"; 239 239 inherit self; 240 240 }; 241 241 242 242 postgresql_15 = self.callPackage generic { 243 - version = "15.0"; 243 + version = "15.1"; 244 244 psqlSchema = "15"; 245 - hash = "sha256-cux09KfBbmhPQ+pC4hVJf81MVdAopo+3LpnmH/QNpNY="; 245 + hash = "sha256-ZP3yPXNK+tDf5Ad9rKlqxR3NaX5ori09TKbEXLFOIa4="; 246 246 this = self.postgresql_15; 247 247 thisAttr = "postgresql_15"; 248 248 inherit self;