mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 19:45:54 +00:00
308c09d41f
* Moved the wordpress sources derivation to the attribute pkgs.wordpress. This makes it easier to override. * Also introduce the `package` option for the wordpress virtual host config which defaults to pkgs.wordpress. * Also fixed the test in nixos/tests/wordpress.nix.
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;
|
|
};
|
|
}
|