summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/mattermost/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/mattermost/default.nix')
-rw-r--r--pkgs/servers/mattermost/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/servers/mattermost/default.nix b/pkgs/servers/mattermost/default.nix
index 693d3348a1f1..0b9a7a51da69 100644
--- a/pkgs/servers/mattermost/default.nix
+++ b/pkgs/servers/mattermost/default.nix
@@ -8,24 +8,26 @@
buildGoModule rec {
pname = "mattermost";
- version = "8.1.4";
+ version = "8.1.7";
src = fetchFromGitHub {
owner = "mattermost";
repo = "mattermost";
rev = "v${version}";
- hash = "sha256-mubKY1nzTmysg015368z/ORqIIOAGPUEthhXNrW1sPk=";
+ hash = "sha256-ZpjdJ1Uck0kM+togUKpxRij8V0jQX+12Meks+L1Tc90=";
} + "/server";
webapp = fetchurl {
url = "https://releases.mattermost.com/${version}/mattermost-${version}-linux-amd64.tar.gz";
- hash = "sha256-st900RxTLwIXg0lyUZZnYom99fbiafF7ignaqF1YwME=";
+ hash = "sha256-eORIoZLoxWdvuRlirJ7djBTgueIzlzIhRAoURy58zCA=";
};
- vendorHash = "sha256-UFZlBZJf/AtJiY+EtekSrnwUmrYnH151XnRyRQFTft0=";
+ vendorHash = "sha256-RPnCAxksKppsjVtZYhwcoJuAmMJ85AstuoBFChKwAOk=";
subPackages = [ "cmd/mattermost" ];
+ tags = [ "production" ];
+
ldflags = [
"-s"
"-w"
@@ -33,7 +35,7 @@ buildGoModule rec {
"-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=v${version}"
+ "-X github.com/mattermost/mattermost/server/public/model.BuildHashEnterprise=none"
"-X github.com/mattermost/mattermost/server/public/model.BuildEnterpriseReady=false"
];
@@ -51,7 +53,7 @@ buildGoModule rec {
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 ];
+ maintainers = with maintainers; [ ryantm numinit kranzes mgdelacroix ];
mainProgram = "mattermost";
};
}