forked from mirrors/nixpkgs
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ lib, stdenv, fetchurl, nixosTests, writeScript }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wordpress";
|
|
version = "6.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://wordpress.org/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-UG5FYlJowBy71DJHgoDE1/lIIndp0qx1yFlDIeMV0Og=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/wordpress
|
|
cp -r . $out/share/wordpress
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) wordpress;
|
|
};
|
|
|
|
passthru.updateScript = writeScript "update.sh" ''
|
|
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p common-updater-scripts jq
|
|
set -eu -o pipefail
|
|
version=$(curl --globoff "https://api.wordpress.org/core/version-check/1.7/" | jq -r '.offers[0].version')
|
|
update-source-version wordpress $version
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|