mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
13 lines
444 B
Nix
13 lines
444 B
Nix
|
# Upgrading? We have a test! nix-build ./nixos/tests/wordpress.nix
|
||
|
{ fetchFromGitHub, lib } : fetchFromGitHub {
|
||
|
owner = "WordPress";
|
||
|
repo = "WordPress";
|
||
|
rev = "4.7.3";
|
||
|
sha256 = "05gggm40065abylp6bdc0zn0q6ahcggyh4q6rk0ak242q8v5fm5b";
|
||
|
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;
|
||
|
};
|
||
|
}
|