2022-06-20 23:24:30 +00:00
|
|
|
{ lib
|
2022-06-29 21:13:54 +00:00
|
|
|
, buildGoModule
|
2022-06-20 23:24:30 +00:00
|
|
|
, fetchFromGitHub
|
mattermost: 7.10.2 -> 7.10.3
Fixes security issues MMSA-2023-00190, MMSA-2023-00175, MMSA-2023-00202, MMSA-2023-00174,
MMSA-2023-00169, MMSA-2023-00186, MMSA-2023-00200, MMSA-2023-00178, MMSA-2023-00185, MMSA-2023-00176,
MMSA-2023-00147 and MMSA-2023-00168.
Release announcement:
https://mattermost.com/blog/mattermost-security-updates-7-10-3-7-9-5-7-8-7-esr-released/
2023-07-08 08:17:04 +00:00
|
|
|
, fetchpatch
|
2022-06-20 23:24:30 +00:00
|
|
|
, fetchurl
|
|
|
|
, nixosTests
|
|
|
|
}:
|
|
|
|
|
2022-06-29 21:13:54 +00:00
|
|
|
buildGoModule rec {
|
2022-06-20 23:24:30 +00:00
|
|
|
pname = "mattermost";
|
2024-02-16 23:11:22 +00:00
|
|
|
version = "8.1.10";
|
2022-06-20 23:24:30 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mattermost";
|
mattermost: 7.10.2 -> 7.10.3
Fixes security issues MMSA-2023-00190, MMSA-2023-00175, MMSA-2023-00202, MMSA-2023-00174,
MMSA-2023-00169, MMSA-2023-00186, MMSA-2023-00200, MMSA-2023-00178, MMSA-2023-00185, MMSA-2023-00176,
MMSA-2023-00147 and MMSA-2023-00168.
Release announcement:
https://mattermost.com/blog/mattermost-security-updates-7-10-3-7-9-5-7-8-7-esr-released/
2023-07-08 08:17:04 +00:00
|
|
|
repo = "mattermost";
|
2022-06-20 23:24:30 +00:00
|
|
|
rev = "v${version}";
|
2024-02-16 23:11:22 +00:00
|
|
|
hash = "sha256-eloO83koCNZOR/NYzUCdKOtVdF7rk+VrZ9U2bKWkxNU=";
|
2023-09-23 18:05:24 +00:00
|
|
|
} + "/server";
|
2018-05-16 17:09:19 +00:00
|
|
|
|
2024-02-16 23:11:22 +00:00
|
|
|
# this can probably be removed again in versions newer than 8.1.10
|
|
|
|
overrideModAttrs = (_: {
|
|
|
|
preBuild = ''
|
|
|
|
go mod tidy
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2022-06-20 23:24:30 +00:00
|
|
|
webapp = fetchurl {
|
|
|
|
url = "https://releases.mattermost.com/${version}/mattermost-${version}-linux-amd64.tar.gz";
|
2024-02-16 23:11:22 +00:00
|
|
|
hash = "sha256-qxFW/P+INcMKSzaGZtOOr1Mi/glgZeiKvQ+YN0qX070=";
|
2016-08-15 01:17:05 +00:00
|
|
|
};
|
|
|
|
|
2024-02-16 23:11:22 +00:00
|
|
|
vendorHash = "sha256-ZbLSxG9Gyhk7PBC2V6sMtrQNXvm+ugMfliFIHWO1VLs=";
|
2021-12-31 08:15:17 +00:00
|
|
|
|
2022-06-20 23:24:30 +00:00
|
|
|
subPackages = [ "cmd/mattermost" ];
|
2021-12-31 08:15:17 +00:00
|
|
|
|
2023-12-01 09:22:25 +00:00
|
|
|
tags = [ "production" ];
|
|
|
|
|
2022-06-20 23:24:30 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
2023-09-23 18:05:24 +00:00
|
|
|
"-X github.com/mattermost/mattermost/server/public/model.Version=${version}"
|
|
|
|
"-X github.com/mattermost/mattermost/server/public/model.BuildNumber=${version}-nixpkgs"
|
|
|
|
"-X github.com/mattermost/mattermost/server/public/model.BuildDate=1970-01-01"
|
|
|
|
"-X github.com/mattermost/mattermost/server/public/model.BuildHash=v${version}"
|
2023-12-01 09:22:25 +00:00
|
|
|
"-X github.com/mattermost/mattermost/server/public/model.BuildHashEnterprise=none"
|
2023-09-23 18:05:24 +00:00
|
|
|
"-X github.com/mattermost/mattermost/server/public/model.BuildEnterpriseReady=false"
|
2024-02-16 23:11:22 +00:00
|
|
|
"-X github.com/mattermost/mattermost/server/public/model.MockCWS=false"
|
2022-06-20 23:24:30 +00:00
|
|
|
];
|
2021-12-31 08:15:17 +00:00
|
|
|
|
2022-06-20 23:24:30 +00:00
|
|
|
postInstall = ''
|
|
|
|
tar --strip 1 --directory $out -xf $webapp \
|
|
|
|
mattermost/{client,i18n,fonts,templates,config}
|
2018-05-16 17:09:19 +00:00
|
|
|
|
2022-06-20 23:24:30 +00:00
|
|
|
# For some reason a bunch of these files are executable
|
|
|
|
find $out/{client,i18n,fonts,templates,config} -type f -exec chmod -x {} \;
|
|
|
|
'';
|
2018-05-16 17:09:19 +00:00
|
|
|
|
2022-06-20 23:24:30 +00:00
|
|
|
passthru.tests.mattermost = nixosTests.mattermost;
|
2022-01-23 23:56:02 +00:00
|
|
|
|
2022-06-20 23:24:30 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Mattermost is an open source platform for secure collaboration across the entire software development lifecycle";
|
|
|
|
homepage = "https://www.mattermost.org";
|
|
|
|
license = with licenses; [ agpl3 asl20 ];
|
2023-12-01 09:22:25 +00:00
|
|
|
maintainers = with maintainers; [ ryantm numinit kranzes mgdelacroix ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "mattermost";
|
2016-08-15 01:17:05 +00:00
|
|
|
};
|
2022-06-20 23:24:30 +00:00
|
|
|
}
|