Merge pull request #186170 from helsinki-systems/upd/postgresql

postgresql: 10.21 -> 10.22, 11.16 -> 11.17, 12.11 -> 12.12, 13.7 -> 13.8, 14.4 -> 14.5
This commit is contained in:
Mario Rodas 2022-08-13 03:28:37 -05:00 committed by GitHub
commit bfa6cb4d6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ let
, this, self, newScope, buildEnv
# source specification
, version, sha256, psqlSchema,
, version, hash, psqlSchema,
# for tests
nixosTests, thisAttr
@ -30,7 +30,7 @@ let
src = fetchurl {
url = "mirror://postgresql/source/v${version}/${pname}-${version}.tar.bz2";
inherit sha256;
inherit hash;
};
hardeningEnable = lib.optionals (!stdenv.cc.isClang) [ "pie" ];
@ -201,9 +201,9 @@ let
in self: {
postgresql_10 = self.callPackage generic {
version = "10.21";
version = "10.22";
psqlSchema = "10.0"; # should be 10, but changing it is invasive
sha256 = "sha256-0yGYhW1Sqab11QZC74ZoesBYvW78pcntV754CElvRdE=";
hash = "sha256-lVl3VVxp3xpk9EuB1KGYfrdKu9GHBXn1rZ2UYTPdjk0=";
this = self.postgresql_10;
thisAttr = "postgresql_10";
inherit self;
@ -211,36 +211,36 @@ in self: {
};
postgresql_11 = self.callPackage generic {
version = "11.16";
version = "11.17";
psqlSchema = "11.1"; # should be 11, but changing it is invasive
sha256 = "sha256-LdnhEfCllJ7nyswGXOoPshCSkpuuMQzgW/AbT/xRA6U=";
hash = "sha256-bphJY64HZeYVd5lRA6fmWU2w8L0BUorBI+DeSmpMtMQ=";
this = self.postgresql_11;
thisAttr = "postgresql_11";
inherit self;
};
postgresql_12 = self.callPackage generic {
version = "12.11";
version = "12.12";
psqlSchema = "12";
sha256 = "sha256-ECYkil/Svur0PkxyNqyBflbVi2gaM1hWRl37x1s+gwI=";
hash = "sha256-NLPxxpQI4iBowMcbGCdpHxyJFTsK1XbBpE+JIKhYA5w=";
this = self.postgresql_12;
thisAttr = "postgresql_12";
inherit self;
};
postgresql_13 = self.callPackage generic {
version = "13.7";
version = "13.8";
psqlSchema = "13";
sha256 = "sha256-G5Bb9PPYNhSjk7PFH9NFkQ/SYeT1Ekpo2aH906KkY5k=";
hash = "sha256-c4dv3TpRcIc0BFjcpM4VuNKk286zNMBEFCRVGubEze0=";
this = self.postgresql_13;
thisAttr = "postgresql_13";
inherit self;
};
postgresql_14 = self.callPackage generic {
version = "14.4";
version = "14.5";
psqlSchema = "14";
sha256 = "sha256-wjtiN8UjHHkVEb3HkJhhfWhS6eO982Dv2LXRWho9j2o=";
hash = "sha256-1PcstfuFfJqfdeyM8JGhdxJygC8hePCy5lt7b/ZPSjA=";
this = self.postgresql_14;
thisAttr = "postgresql_14";
inherit self;