mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ stdenv, fetchurl, fetchFromGitHub, buildGoPackage }:
|
|
|
|
let
|
|
version = "4.7.2";
|
|
goPackagePath = "github.com/mattermost/mattermost-server";
|
|
buildFlags = "-ldflags \"-X '${goPackagePath}/model.BuildNumber=nixpkgs-${version}'\"";
|
|
in
|
|
|
|
buildGoPackage rec {
|
|
name = "mattermost-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mattermost";
|
|
repo = "mattermost-server";
|
|
rev = "v${version}";
|
|
sha256 = "129rvmwf9c19jbdpiclysb870svs2fbhdybcal0jbmzgx2zr8qma";
|
|
};
|
|
|
|
webApp = fetchurl {
|
|
url = "https://releases.mattermost.com/${version}/mattermost-team-${version}-linux-amd64.tar.gz";
|
|
sha256 = "14gr7zzx77q862qccjcdwrzd6n8g2z8yngw8aa4g3q6hypsqi4v3";
|
|
};
|
|
|
|
inherit goPackagePath;
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
cd go/src/${goPackagePath}/cmd/platform
|
|
go install ${buildFlags}
|
|
runHook postBuild
|
|
'';
|
|
|
|
preInstall = ''
|
|
mkdir -p $bin
|
|
tar --strip 1 -C $bin -xf $webApp
|
|
'';
|
|
|
|
postInstall = ''
|
|
ln -s $bin/bin/platform $bin/bin/mattermost-platform
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open-source, self-hosted Slack-alternative";
|
|
homepage = https://www.mattermost.org;
|
|
license = with licenses; [ agpl3 asl20 ];
|
|
maintainers = with maintainers; [ fpletz ryantm ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|