mattermost: 9.5.12 -> 9.5.13

Fixes: MMSA-2024-00392 MMSA-2024-00388
See: https://mattermost.com/security-updates/
This commit is contained in:
Morgan Jones 2024-11-16 21:37:02 -08:00
parent e8c38b73ae
commit 8b163d6d84
No known key found for this signature in database
GPG Key ID: 52BAC54ED447974E

View File

@ -12,13 +12,13 @@ buildGoModule rec {
# See https://docs.mattermost.com/upgrade/extended-support-release.html # See https://docs.mattermost.com/upgrade/extended-support-release.html
# When a new ESR version is available (e.g. 8.1.x -> 9.5.x), update # When a new ESR version is available (e.g. 8.1.x -> 9.5.x), update
# the version regex in passthru.updateScript as well. # the version regex in passthru.updateScript as well.
version = "9.5.12"; version = "9.5.13";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mattermost"; owner = "mattermost";
repo = "mattermost"; repo = "mattermost";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-fI2E/LEHGJetU/SDAW1jSbSV4/PrdipHrEAc6IpeIU4="; hash = "sha256-h8f1VoeFwYgnOeWdjVyJFf4+vb6TWIh/6VkekK0HpQo=";
}; };
# Needed because buildGoModule does not support go workspaces yet. # Needed because buildGoModule does not support go workspaces yet.
@ -34,7 +34,7 @@ buildGoModule rec {
webapp = fetchurl { webapp = fetchurl {
url = "https://releases.mattermost.com/${version}/mattermost-${version}-linux-amd64.tar.gz"; url = "https://releases.mattermost.com/${version}/mattermost-${version}-linux-amd64.tar.gz";
hash = "sha256-cePdlVDflPbik5K2qVpmF0Z3iOoEBjpZyGhGZKWSXiQ="; hash = "sha256-T5Wh322qix0XaZ+4oYweKkxXIq3RcYlI0fyATgU824A=";
}; };
# Makes nix-update-script pick up the fetchurl for the webapp. # Makes nix-update-script pick up the fetchurl for the webapp.