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

14 lines
494 B
Nix
Raw Normal View History

# Upgrading? We have a test! nix-build ./nixos/tests/wordpress.nix
{ fetchFromGitHub, lib } : fetchFromGitHub {
owner = "WordPress";
repo = "WordPress";
2019-01-03 01:41:15 -08:00
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;
2017-10-31 07:57:33 -07:00
maintainers = [ lib.maintainers.basvandijk ];
};
}