2024-02-21 16:38:40 +00:00
|
|
|
{ lib
|
|
|
|
, sources
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, nix-update-script
|
|
|
|
, fetchurl
|
|
|
|
, nixosTests
|
|
|
|
}:
|
2021-03-25 13:59:59 +00:00
|
|
|
|
2024-02-21 16:38:40 +00:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "mattermost";
|
|
|
|
# ESR releases only.
|
|
|
|
# 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
|
|
|
|
# the version regex in passthru.updateScript as well.
|
|
|
|
version = "9.5.1";
|
2021-03-25 13:59:59 +00:00
|
|
|
|
2024-02-21 16:38:40 +00:00
|
|
|
src = sources.mattermost-server;
|
|
|
|
webapp = sources.mattermost-webapp;
|
2021-03-25 13:59:59 +00:00
|
|
|
|
2024-02-21 16:38:40 +00:00
|
|
|
# Needed because buildGoModule does not support go workspaces yet.
|
|
|
|
# We use go 1.22's workspace vendor command, which is not yet available
|
|
|
|
# in the default version of go used in nixpkgs, nor is it used by upstream:
|
|
|
|
# https://github.com/mattermost/mattermost/issues/26221#issuecomment-1945351597
|
|
|
|
overrideModAttrs = (_: {
|
|
|
|
buildPhase = ''
|
|
|
|
make setup-go-work
|
|
|
|
go work vendor -e
|
|
|
|
'';
|
|
|
|
});
|
2021-03-25 13:59:59 +00:00
|
|
|
|
2024-02-21 16:38:40 +00:00
|
|
|
vendorHash = "sha256-TJCtgNf56A1U0EbV5gXjTro+YudVBRWiSZoBC3nJxnE=";
|
2024-02-16 18:32:28 +00:00
|
|
|
|
2024-02-21 16:38:40 +00:00
|
|
|
modRoot = "./server";
|
|
|
|
preBuild = ''
|
|
|
|
make setup-go-work
|
|
|
|
'';
|
2022-11-26 15:02:57 +00:00
|
|
|
|
2024-02-21 16:38:40 +00:00
|
|
|
subPackages = [ "cmd/mattermost" "cmd/mmctl" ];
|
2021-03-25 13:59:59 +00:00
|
|
|
|
2024-02-21 16:38:40 +00:00
|
|
|
tags = [ "production" ];
|
2021-03-25 13:59:59 +00:00
|
|
|
|
2024-02-21 16:38:40 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
"-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}"
|
|
|
|
"-X github.com/mattermost/mattermost/server/public/model.BuildHashEnterprise=none"
|
|
|
|
"-X github.com/mattermost/mattermost/server/public/model.BuildEnterpriseReady=false"
|
|
|
|
];
|
2021-03-25 13:59:59 +00:00
|
|
|
|
2024-02-21 16:38:40 +00:00
|
|
|
postInstall = ''
|
|
|
|
cp -r $webapp/{client,i18n,fonts,templates,config} $out
|
|
|
|
# For some reason a bunch of these files are executable
|
|
|
|
find $out/{client,i18n,fonts,templates,config} -type f -exec chmod -x {} \;
|
|
|
|
'';
|
2021-03-25 13:59:59 +00:00
|
|
|
|
2024-02-21 16:38:40 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = nix-update-script {
|
|
|
|
extraArgs = [ "--version-regex" "^v(9\.5\.([0-9.]+))" ];
|
|
|
|
};
|
|
|
|
tests.mattermost = nixosTests.mattermost;
|
2021-03-25 13:59:59 +00:00
|
|
|
};
|
|
|
|
|
2024-02-21 16:38:40 +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 ];
|
|
|
|
maintainers = with maintainers; [ ryantm numinit kranzes mgdelacroix ];
|
|
|
|
mainProgram = "mattermost";
|
|
|
|
};
|
|
|
|
}
|