Files
nixpkgs/pkgs/servers/web-apps/wordpress/default.nix
Bart Oostveen 3fcbe0d279 wordpress_7_0: 7.0.3 -> 7.0.4
Fixes a security vulnerability (privilege escalation).

Fixes: GHSA-8vr3-7mxf-gx8w
Fixes: CVE-2026-65640
Announcement: https://wordpress.org/news/2026/08/wordpress-7-0-4-release/
2026-08-12 17:40:36 +02:00

17 lines
445 B
Nix

{ callPackage }:
builtins.mapAttrs (_: callPackage ./generic.nix) rec {
wordpress = wordpress_7_0;
wordpress_6_8 = {
version = "6.8.8";
hash = "sha256-U4jnqPpGLDLkHOXKu3luIijNGHtrgNFdBpqNXm7NPgU=";
};
wordpress_6_9 = {
version = "6.9.7";
hash = "sha256-Ef1l7Mv03V3l7LNyS1X5LFbWweqWdJf+k3S83XpvvaY=";
};
wordpress_7_0 = {
version = "7.0.4";
hash = "sha256-Jrmav8ZUJ/urUrJDFVOblE3O8UZ4maUla2wd4sSufkY=";
};
}