postgresql_18: init at 18beta1

This commit is contained in:
Kamil Monicz 2025-05-29 03:57:18 +00:00
parent 557a1db370
commit 6cdfc25ae4
No known key found for this signature in database
GPG Key ID: F9FB19F1C1DC9C23
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import ./generic.nix {
version = "18beta1";
rev = "refs/tags/REL_18_BETA1";
hash = "sha256-P86bVYfPzkwK/rcvUInYZew/pKejk58/IcnDGx/BWno=";
muslPatches = {
dont-use-locale-a = {
url = "https://git.alpinelinux.org/aports/plain/main/postgresql17/dont-use-locale-a-on-musl.patch?id=d69ead2c87230118ae7f72cef7d761e761e1f37e";
hash = "sha256-6zjz3OpMx4qTETdezwZxSJPPdOvhCNu9nXvAaU9SwH8=";
};
};
}

View File

@ -14,6 +14,7 @@ let
postgresql_15 = ./15.nix;
postgresql_16 = ./16.nix;
postgresql_17 = ./17.nix;
postgresql_18 = ./18.nix;
};
mkAttributes =

View File

@ -10580,6 +10580,7 @@ with pkgs;
postgresql_15
postgresql_16
postgresql_17
postgresql_18
;
inherit (postgresqlJitVersions)
@ -10588,6 +10589,7 @@ with pkgs;
postgresql_15_jit
postgresql_16_jit
postgresql_17_jit
postgresql_18_jit
;
postgresql = postgresql_17;
postgresql_jit = postgresql_17_jit;
@ -10597,6 +10599,7 @@ with pkgs;
postgresql15Packages = recurseIntoAttrs postgresql_15.pkgs;
postgresql16Packages = recurseIntoAttrs postgresql_16.pkgs;
postgresql17Packages = recurseIntoAttrs postgresql_17.pkgs;
postgresql18Packages = recurseIntoAttrs postgresql_18.pkgs;
postgres-websockets = haskellPackages.postgres-websockets.bin;
postgrest = haskellPackages.postgrest.bin;