81229d3afe
Fixes: CVE-2021-29447, CVE-2021-29450
28 lines
713 B
Nix
28 lines
713 B
Nix
{ lib, stdenv, fetchurl, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wordpress";
|
|
version = "5.7.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://wordpress.org/${pname}-${version}.tar.gz";
|
|
sha256 = "08c9g80lhs4h2psf3ykn0l4k1yyy0x21kxjqy8ckjpjvw3281nd4";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/wordpress
|
|
cp -r . $out/share/wordpress
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) wordpress;
|
|
};
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|