about summary refs log tree commit diff
path: root/pkgs/servers/web-apps/wordpress/default.nix
blob: 878e8480bb9938756731fd7fe9b51fbcf3f103b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
  # Upgrading? We have a test! nix-build ./nixos/tests/wordpress.nix
{ fetchFromGitHub, lib } : fetchFromGitHub {
  owner = "WordPress";
  repo = "WordPress";
  rev = "4.7.4";
  sha256 = "1ia9d3n085x2r6pvdrv4rk6gdp6xhjhpsq5g7a6448xzv9hf14ri";
  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;
  };
}