mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +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.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;
|
|
};
|
|
}
|