about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/web-apps/wordpress/default.nix
blob: 9bac7c33f39d71810c4d39d155cfca95c266b001 (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_3;
  wordpress6_3 = {
    version = "6.3.1";
    hash = "sha256-HVV7pANMimJN4P1PsuAyIAZFejvYMQESXmVpoxac8X8=";
  };
  wordpress6_2 = {
    version = "6.2.2";
    hash = "sha256-0qpvPauGbeP1MLHmz6gItJf80Erts7E7x28TM9AmAPk=";
  };
  wordpress6_1 = {
    version = "6.1.2";
    hash = "sha256-ozpuCVeni71CUylmUBk8wVo5ygZAKY7IdZ12DKbpSrw=";
  };
}