about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/web-apps/wordpress/default.nix
blob: e9680f84840331c407979948f19189b9d8da701e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ callPackage }: builtins.mapAttrs (_: callPackage ./generic.nix) rec {
  wordpress = wordpress6_5;
  wordpress6_3 = {
    version = "6.3.4";
    hash = "sha256-Z94B2PQ/wl2N1MPMH15CToI3taKDHFRnbAl/Nt9jB+I=";
  };
  wordpress6_4 = {
    version = "6.4.4";
    hash = "sha256-aLOO/XgjI3d/+1BpHDT2pGR697oceghjzOId1MjC+wQ=";
  };
  wordpress6_5 = {
    version = "6.5.2";
    hash = "sha256-APBO7hO9iuDGOP/IvB0dLAwby0PU7LPFth4IUXNQe9I=";
  };
}