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