pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / web-apps / mediawiki / default.nix
blob7b8b72f1af7b16a93645ae6bbb89087ab1a627b8
1 { lib, stdenvNoCC, fetchurl, imagemagick, nixosTests }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "mediawiki";
5   version = "1.42.3";
7   src = fetchurl {
8     url = "https://releases.wikimedia.org/mediawiki/${lib.versions.majorMinor version}/mediawiki-${version}.tar.gz";
9     hash = "sha256-4FVjA/HYRnnNk5sykMyrP4nLxp02B/8dRJymxZU7ILw=";
10   };
12   postPatch = ''
13     sed -i 's|$vars = Installer::getExistingLocalSettings();|$vars = null;|' includes/installer/CliInstaller.php
15     # fix generating previews for SVGs
16     substituteInPlace includes/config-schema.php \
17       --replace-fail "\$path/convert" "${imagemagick}/bin/convert"
18   '';
20   installPhase = ''
21     runHook preInstall
23     mkdir -p $out/share/mediawiki
24     cp -r * $out/share/mediawiki
25     echo "<?php
26       return require(getenv('MEDIAWIKI_CONFIG'));
27     ?>" > $out/share/mediawiki/LocalSettings.php
29     runHook postInstall
30   '';
32   passthru.tests = {
33     inherit (nixosTests.mediawiki) mysql postgresql;
34   };
36   meta = with lib; {
37     description = "Collaborative editing software that runs Wikipedia";
38     license = licenses.gpl2Plus;
39     homepage = "https://www.mediawiki.org/";
40     platforms = platforms.all;
41     maintainers = with maintainers; [ ] ++ teams.c3d2.members;
42   };