summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFlorian Jacob <projects+git@florianjacob.de>2019-02-10 23:28:42 +0100
committerFlorian Jacob <projects+git@florianjacob.de>2019-02-11 17:33:44 +0100
commit2f059806ef77b87e49590048a6f46a4e3fc16514 (patch)
treeaa810ac3ccbbac163e138cb93a814b587a36fe8a /pkgs
parent482c0440acba8ba5652f32f26beab168e362c212 (diff)
downloadnixpkgs-2f059806ef77b87e49590048a6f46a4e3fc16514.tar
nixpkgs-2f059806ef77b87e49590048a6f46a4e3fc16514.tar.gz
nixpkgs-2f059806ef77b87e49590048a6f46a4e3fc16514.tar.bz2
nixpkgs-2f059806ef77b87e49590048a6f46a4e3fc16514.tar.lz
nixpkgs-2f059806ef77b87e49590048a6f46a4e3fc16514.tar.xz
nixpkgs-2f059806ef77b87e49590048a6f46a4e3fc16514.tar.zst
nixpkgs-2f059806ef77b87e49590048a6f46a4e3fc16514.zip
matomo: 3.7.0 -> 3.8.1
security update
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/web-apps/matomo/default.nix4
-rw-r--r--pkgs/servers/web-apps/matomo/make-localhost-default-database-host.patch16
2 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/servers/web-apps/matomo/default.nix b/pkgs/servers/web-apps/matomo/default.nix
index 9c1180ffb49..89de2500811 100644
--- a/pkgs/servers/web-apps/matomo/default.nix
+++ b/pkgs/servers/web-apps/matomo/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "matomo-${version}";
-  version = "3.7.0";
+  version = "3.8.1";
 
   src = fetchurl {
     # TODO: As soon as the tarballs are renamed as well on future releases, this should be enabled again
     # url = "https://builds.matomo.org/${name}.tar.gz";
     url = "https://builds.matomo.org/piwik-${version}.tar.gz";
-    sha256 = "17ihsmwdfrx1c1v8cp5pc3swx3h0i0l9pjrc8jyww08kavfbfly6";
+    sha256 = "0ca4fkg2jpkfg0r9hxl45ad5xzz0gxhf404i96j059bn3c41kfi0";
   };
 
   nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/servers/web-apps/matomo/make-localhost-default-database-host.patch b/pkgs/servers/web-apps/matomo/make-localhost-default-database-host.patch
index 48808ac2ccc..5af8ef860b2 100644
--- a/pkgs/servers/web-apps/matomo/make-localhost-default-database-host.patch
+++ b/pkgs/servers/web-apps/matomo/make-localhost-default-database-host.patch
@@ -1,13 +1,13 @@
 diff --git a/plugins/Installation/FormDatabaseSetup.php b/plugins/Installation/FormDatabaseSetup.php
-index 9364f49870..2625cbb91b 100644
+index 74de2535b4..bc172ad0eb 100644
 --- a/plugins/Installation/FormDatabaseSetup.php
 +++ b/plugins/Installation/FormDatabaseSetup.php
 @@ -82,7 +82,7 @@ class FormDatabaseSetup extends QuickForm2
  
-         // default values
-         $this->addDataSource(new HTML_QuickForm2_DataSource_Array(array(
--                                                                       'host'          => '127.0.0.1',
-+                                                                       'host'          => 'localhost',
-                                                                        'type'          => $defaultDatabaseType,
-                                                                        'tables_prefix' => 'matomo_',
-                                                                   )));
+ 
+         $defaults = array(
+-            'host'          => '127.0.0.1',
++            'host'          => 'localhost',
+             'type'          => $defaultDatabaseType,
+             'tables_prefix' => 'matomo_',
+         );