2022-11-26 15:02:57 +00:00
|
|
|
{ stdenv, fetchurl, fetchFromGitHub, buildGo118Module, buildEnv, lib, sources }:
|
2021-03-25 13:59:59 +00:00
|
|
|
|
|
|
|
let
|
2022-11-26 15:02:57 +00:00
|
|
|
version = "7.1.4";
|
2021-03-25 13:59:59 +00:00
|
|
|
|
2022-11-26 15:02:57 +00:00
|
|
|
mattermost-server = buildGo118Module rec {
|
2021-03-25 13:59:59 +00:00
|
|
|
pname = "mattermost-server";
|
|
|
|
inherit version;
|
|
|
|
|
2021-04-28 20:24:35 +00:00
|
|
|
src = sources.mattermost-server.outPath;
|
2021-03-25 13:59:59 +00:00
|
|
|
|
2022-11-26 15:02:57 +00:00
|
|
|
vendorSha256 = "sha256-98riYN6MaBsKyaueogjXI7x3Lcionk0xcGt4DH684QU=";
|
|
|
|
|
|
|
|
subPackages = [ "cmd/mattermost" ];
|
2021-03-25 13:59:59 +00:00
|
|
|
|
2021-12-01 11:22:20 +00:00
|
|
|
ldflags = [
|
2022-11-26 15:02:57 +00:00
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
"-X github.com/mattermost/mattermost-server/model.BuildNumber=nixpkgs-${version}"
|
2021-12-01 11:22:20 +00:00
|
|
|
];
|
2021-03-25 13:59:59 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
mattermost-webapp = stdenv.mkDerivation {
|
|
|
|
pname = "mattermost-webapp";
|
|
|
|
inherit version;
|
|
|
|
|
2021-04-28 20:24:35 +00:00
|
|
|
src = sources.mattermost-webapp;
|
2021-03-25 13:59:59 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
2021-04-28 20:24:35 +00:00
|
|
|
cp -r client $out
|
|
|
|
cp -r i18n $out
|
|
|
|
cp -r fonts $out
|
|
|
|
cp -r templates $out
|
|
|
|
cp -r config $out
|
2021-03-25 13:59:59 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
buildEnv {
|
|
|
|
name = "mattermost-${version}";
|
|
|
|
paths = [ mattermost-server mattermost-webapp ];
|
|
|
|
|
2021-11-19 18:53:06 +00:00
|
|
|
meta = with lib; {
|
2021-03-25 13:59:59 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|