about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/web-apps/wordpress/default.nix
blob: 3a721b7339076abada083d6644b7b7e9ce49ba48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
  # Upgrading? We have a test! nix-build ./nixos/tests/wordpress.nix
{ fetchFromGitHub, lib } : fetchFromGitHub {
  owner = "WordPress";
  repo = "WordPress";
  rev = "5.0.2";
  sha256 = "1r8y62mdv6ji82hcn94gngi68mwilxh69gpx8r83k0cy08s99sln";
  meta = {
    homepage = https://wordpress.org;
    description = "WordPress is open source software you can use to create a beautiful website, blog, or app.";
    license = lib.licenses.gpl2;
    maintainers = [ lib.maintainers.basvandijk ];
  };
}