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

29 lines
715 B
Nix
Raw Normal View History

2020-06-24 07:49:37 -07:00
{ stdenv, fetchurl, nixosTests }:
2019-05-28 14:38:34 -07:00
stdenv.mkDerivation rec {
pname = "wordpress";
2020-09-19 12:41:19 -07:00
version = "5.5.1";
2019-05-28 14:38:34 -07:00
src = fetchurl {
url = "https://wordpress.org/${pname}-${version}.tar.gz";
2020-09-19 12:41:19 -07:00
sha256 = "15cjp48q23fw8ryy39mlxi4rd3rha2yqyrnk5mhx0h72ygawx8k6";
2019-05-28 14:38:34 -07:00
};
installPhase = ''
mkdir -p $out/share/wordpress
cp -r . $out/share/wordpress
'';
2020-06-24 07:49:37 -07:00
passthru.tests = {
inherit (nixosTests) wordpress;
};
2019-05-28 14:38:34 -07:00
meta = with stdenv.lib; {
homepage = "https://wordpress.org";
description = "WordPress is open source software you can use to create a beautiful website, blog, or app";
license = [ licenses.gpl2 ];
maintainers = [ maintainers.basvandijk ];
platforms = platforms.all;
};
}