postgresql_18: 18beta2 -> 18beta3 (#433763)

This commit is contained in:
Wolfgang Walther
2025-08-15 10:50:48 +00:00
committed by GitHub
2 changed files with 9 additions and 3 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import ./generic.nix {
version = "18beta2";
rev = "refs/tags/REL_18_BETA2";
hash = "sha256-n3NA0XJE2wvbOwrQOMXbzKn+7HLGAQSXgDU9ObhddZQ=";
rev = "refs/tags/REL_18_BETA3";
hash = "sha256-QpJONriQnRN75cCcsdu9TGt8Km7NQLs5diZx1pVruc4=";
muslPatches = {
dont-use-locale-a = {
url = "https://git.alpinelinux.org/aports/plain/main/postgresql17/dont-use-locale-a-on-musl.patch?id=d69ead2c87230118ae7f72cef7d761e761e1f37e";
@@ -42,6 +42,12 @@ buildPgrxExtension (finalAttrs: {
maintainers = with lib.maintainers; [ typetetris ];
platforms = postgresql.meta.platforms;
license = lib.licenses.tsl;
broken = lib.versionOlder postgresql.version "15";
broken =
lib.versionOlder postgresql.version "15"
||
# Check after next package update.
lib.warnIf (finalAttrs.version != "1.21.0")
"Is postgresql18Packages.timescaledb_toolkit still broken?"
(lib.versionAtLeast postgresql.version "18");
};
})