···33let
44 versions = {
55 matomo = {
66- version = "4.5.0";
77- sha256 = "sha256-OyjdzY+ENYxOTVjDLjj2unJbpaGODIH2I5Acmt45HDA=";
66+ version = "4.10.1";
77+ sha256 = "sha256-TN2xy3YHhtuewmi7h9vtMKElRI8uWOvnYzG1RlIGT3U=";
88 };
991010 matomo-beta = {
1111- version = "4.6.0";
1111+ version = "4.11.0";
1212 # `beta` examples: "b1", "rc1", null
1313 # when updating: use null if stable version is >= latest beta or release candidate
1414- beta = "b2";
1515- sha256 = "sha256-7p/ZPtr5a/tBjrM27ILF3rNfxDIWuzWKCXNom3HlyL8=";
1414+ beta = "rc2";
1515+ sha256 = "sha256-PYzv4OJYI4Zf7LMXQvX7fhvXryS6XPbmA0pTesF1vQ8=";
1616 };
1717 };
1818 common = pname: { version, sha256, beta ? null }:
+2
pkgs/tools/audio/beets/common.nix
···137137 runHook postCheck
138138 '';
139139140140+ passthru.plugins = allPlugins;
141141+140142 meta = with lib; {
141143 description = "Music tagger and library organizer";
142144 homepage = "https://beets.io";
+11
pkgs/tools/filesystems/glusterfs/default.nix
···6565 };
6666 inherit buildInputs propagatedBuildInputs;
67676868+ patches = [
6969+ # Upstream invokes `openssl version -d` to derive the canonical system path
7070+ # for certificates, which resolves to a nix store path, so this patch
7171+ # statically sets the configure.ac value. There's probably a less-brittle
7272+ # way to do this! (this will likely fail on a version bump)
7373+ # References:
7474+ # - https://github.com/gluster/glusterfs/issues/3234
7575+ # - https://github.com/gluster/glusterfs/commit/a7dc43f533ad4b8ff68bf57704fefc614da65493
7676+ ./ssl_cert_path.patch
7777+ ];
7878+6879 postPatch = ''
6980 sed -e '/chmod u+s/d' -i contrib/fuse-util/Makefile.am
7081 substituteInPlace libglusterfs/src/glusterfs/lvm-defaults.h \