nixpkgs/pkgs/servers/web-apps/wordpress/default.nix

14 lines
492 B
Nix
Raw Normal View History

# Upgrading? We have a test! nix-build ./nixos/tests/wordpress.nix
{ fetchFromGitHub, lib } : fetchFromGitHub {
owner = "WordPress";
repo = "WordPress";
2017-11-23 15:54:23 +00:00
rev = "4.9";
sha256 = "1qffh413k8c1mf3jj9hys3a7y1qfjcg2w96w4c9x3ida3lchg7ln";
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;
2017-10-31 14:57:33 +00:00
maintainers = [ lib.maintainers.basvandijk ];
};
}