45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ stdenv, fetchurl, fetchFromGitHub, buildGoPackage }:
|
|
|
|
buildGoPackage rec {
|
|
name = "mattermost-${version}";
|
|
version = "4.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mattermost";
|
|
repo = "mattermost-server";
|
|
rev = "v${version}";
|
|
sha256 = "11rw2m26mf4x6xbxkf37c1j16kyxx059jv3cdajkpv31xn82s7iv";
|
|
};
|
|
|
|
webApp = fetchurl {
|
|
url = "https://releases.mattermost.com/${version}/mattermost-team-${version}-linux-amd64.tar.gz";
|
|
sha256 = "09dzkvrwj4ynk8yqrcbnhmv9hm3z3r3vyjrbzpvmznfrwcccc7lr";
|
|
};
|
|
|
|
goPackagePath = "github.com/mattermost/mattermost-server";
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
cd go/src/${goPackagePath}/cmd/platform
|
|
go install
|
|
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;
|
|
};
|
|
}
|