lol

matomo-beta: 4.14.3-b6 -> 5.0.0-rc3

* https://matomo.org/changelog/matomo-5-0-0-rc/

authored by

Tobias Stenzel and committed by
Your Name
d5fc5429 ffbf8e46

+16 -6
+10
pkgs/servers/web-apps/matomo/change-path-geoip2-5.x.patch
··· 1 + --- a/plugins/GeoIp2/config/config.php 2 + +++ b/plugins/GeoIp2/config/config.php 3 + @@ -1,6 +1,6 @@ 4 + <?php 5 + 6 + return [ 7 + - 'path.geoip2' => Piwik\DI::string('{path.root}/misc/'), 8 + + 'path.geoip2' => PIWIK_USER_PATH . '/misc/', 9 + 'geopip2.ispEnabled' => true 10 + ];
-1
pkgs/servers/web-apps/matomo/change-path-geoip2.patch pkgs/servers/web-apps/matomo/change-path-geoip2-4.x.patch
··· 8 8 + 'path.geoip2' => PIWIK_USER_PATH . '/misc/', 9 9 'geopip2.ispEnabled' => true 10 10 ]; 11 - \ Pas de fin de ligne à la fin du fichier
+6 -5
pkgs/servers/web-apps/matomo/default.nix
··· 7 7 hash = "sha256-XnfiprGLqFQqPk30gcAVLdBZ3pYMSdBPfnicm7V1PSc="; 8 8 }; 9 9 matomo-beta = { 10 - version = "4.14.3"; 10 + version = "5.0.0"; 11 11 # `beta` examples: "b1", "rc1", null 12 12 # when updating: use null if stable version is >= latest beta or release candidate 13 - beta = "b6"; 14 - hash = "sha256-WGyGoTugxHgB2by1F57PQhyqQRjoKBCvwFBZvpsHwZg="; 13 + beta = "rc3"; 14 + hash = "sha256-Q5GB4i0ew6+tr8Bsm9PYkzJ8U6DmVPwG2QCi8CTge5E="; 15 15 }; 16 16 }; 17 17 common = pname: { version, hash, beta ? null }: ··· 39 39 # TODO: is upstream interested in this? 40 40 # -> discussion at https://github.com/matomo-org/matomo/issues/12646 41 41 ./make-localhost-default-database-host.patch 42 - 43 42 # This changes the default config for path.geoip2 so that it doesn't point 44 43 # to the nix store. 45 - ./change-path-geoip2.patch 44 + (if lib.versionOlder version "5.0" 45 + then ./change-path-geoip2-4.x.patch 46 + else ./change-path-geoip2-5.x.patch) 46 47 ]; 47 48 48 49 # this bootstrap.php adds support for getting PIWIK_USER_PATH