postgresql_15: init at 15.0

https://www.postgresql.org/docs/15/release-15.html
This commit is contained in:
Justin Wood
2022-10-13 11:56:40 -04:00
committed by Mario Rodas
parent 1a33c4f1ef
commit fbe3995298
2 changed files with 11 additions and 0 deletions
+9
View File
@@ -245,4 +245,13 @@ in self: {
thisAttr = "postgresql_14";
inherit self;
};
postgresql_15 = self.callPackage generic {
version = "15.0";
psqlSchema = "15";
hash = "sha256-cux09KfBbmhPQ+pC4hVJf81MVdAopo+3LpnmH/QNpNY=";
this = self.postgresql_15;
thisAttr = "postgresql_15";
inherit self;
};
}
+2
View File
@@ -23926,12 +23926,14 @@ with pkgs;
postgresql_12
postgresql_13
postgresql_14
postgresql_15
;
postgresql = postgresql_14.override { this = postgresql; };
postgresqlPackages = recurseIntoAttrs postgresql.pkgs;
postgresql11Packages = recurseIntoAttrs postgresql_11.pkgs;
postgresql12Packages = recurseIntoAttrs postgresql_12.pkgs;
postgresql13Packages = recurseIntoAttrs postgresql_13.pkgs;
postgresql15Packages = recurseIntoAttrs postgresql_15.pkgs;
postgresql14Packages = postgresqlPackages;
postgresql_jdbc = callPackage ../development/java-modules/postgresql_jdbc { };