Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 16608459540d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3d92872a5e4d
Choose a head ref
  • 4 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 26, 2019

  1. matomo: 3.8.1 -> 3.9.0

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/matomo/versions
    r-ryantm committed Mar 26, 2019
    Copy the full SHA
    1392434 View commit details

Commits on Mar 28, 2019

  1. matomo: update url

    flokli committed Mar 28, 2019
    Copy the full SHA
    4ffd3ad View commit details
  2. matomo: 3.9.0 -> 3.9.1

    flokli committed Mar 28, 2019
    Copy the full SHA
    26f1943 View commit details
  3. Merge pull request #58333 from r-ryantm/auto-update/matomo

    matomo: 3.8.1 -> 3.9.0
    flokli authored Mar 28, 2019
    Copy the full SHA
    3d92872 View commit details
Showing with 3 additions and 5 deletions.
  1. +3 −5 pkgs/servers/web-apps/matomo/default.nix
8 changes: 3 additions & 5 deletions pkgs/servers/web-apps/matomo/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,11 @@

stdenv.mkDerivation rec {
name = "matomo-${version}";
version = "3.8.1";
version = "3.9.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 = "0ca4fkg2jpkfg0r9hxl45ad5xzz0gxhf404i96j059bn3c41kfi0";
url = "https://builds.matomo.org/matomo-${version}.tar.gz";
sha256 = "1y406dnwn4jyrjr2d5qfsg3b4v7nfbh09v74dm1vlcy3mkbhv2bp";
};

nativeBuildInputs = [ makeWrapper ];