mattermost: 7.1.8 → 7.8.5
This commit is contained in:
parent
57b6eac7c2
commit
d8e937a91d
4 changed files with 17 additions and 11 deletions
14
flake.lock
14
flake.lock
|
@ -406,16 +406,16 @@
|
||||||
"mattermost-server": {
|
"mattermost-server": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1680710455,
|
"lastModified": 1683810279,
|
||||||
"narHash": "sha256-+OIIhoDn8Km4/xoVAUpCBkmu2hJRLpwluYnsPeTH8Qc=",
|
"narHash": "sha256-qC6tJcWruiTbWXKuACuhl0kwbRdPVXfUlaFJx4DiQgE=",
|
||||||
"owner": "mattermost",
|
"owner": "mattermost",
|
||||||
"repo": "mattermost-server",
|
"repo": "mattermost-server",
|
||||||
"rev": "8cf21b2ca06ebc4f26bf6ddd892650f370dd2bd3",
|
"rev": "bcd5477a3f6eebc222b1378059e842b6d33e9eb2",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "mattermost",
|
"owner": "mattermost",
|
||||||
"ref": "v7.1.8",
|
"ref": "v7.8.5",
|
||||||
"repo": "mattermost-server",
|
"repo": "mattermost-server",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
@ -423,13 +423,13 @@
|
||||||
"mattermost-webapp": {
|
"mattermost-webapp": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"narHash": "sha256-Pj7rAxuDulD24kCweydNsVg/vEAQvJPSEWRtX8cxbkg=",
|
"narHash": "sha256-IkOVU6/wYYqHcpAC23Yz4e2LCSPYvb7LHya6MUCn/+w=",
|
||||||
"type": "tarball",
|
"type": "tarball",
|
||||||
"url": "https://releases.mattermost.com/7.1.8/mattermost-7.1.8-linux-amd64.tar.gz"
|
"url": "https://releases.mattermost.com/7.8.5/mattermost-7.8.5-linux-amd64.tar.gz"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"type": "tarball",
|
"type": "tarball",
|
||||||
"url": "https://releases.mattermost.com/7.1.8/mattermost-7.1.8-linux-amd64.tar.gz"
|
"url": "https://releases.mattermost.com/7.8.5/mattermost-7.8.5-linux-amd64.tar.gz"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nix-doom-emacs": {
|
"nix-doom-emacs": {
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
description = "hacc infra stuff";
|
description = "hacc infra stuff";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
mattermost-webapp.url = "https://releases.mattermost.com/7.1.8/mattermost-7.1.8-linux-amd64.tar.gz";
|
mattermost-webapp.url = "https://releases.mattermost.com/7.8.5/mattermost-7.8.5-linux-amd64.tar.gz";
|
||||||
mattermost-webapp.flake = false;
|
mattermost-webapp.flake = false;
|
||||||
mattermost-server.url = "github:mattermost/mattermost-server?ref=v7.1.8";
|
mattermost-server.url = "github:mattermost/mattermost-server?ref=v7.8.5";
|
||||||
mattermost-server.flake = false;
|
mattermost-server.flake = false;
|
||||||
|
|
||||||
nixpkgs.url = "nixpkgs/nixos-22.11";
|
nixpkgs.url = "nixpkgs/nixos-22.11";
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, fetchurl, fetchFromGitHub, buildGo118Module, buildEnv, lib, sources }:
|
{ stdenv, fetchurl, fetchFromGitHub, buildGo118Module, buildEnv, lib, sources }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "7.1.8";
|
version = "7.8.5";
|
||||||
|
|
||||||
mattermost-server = buildGo118Module rec {
|
mattermost-server = buildGo118Module rec {
|
||||||
pname = "mattermost-server";
|
pname = "mattermost-server";
|
||||||
|
@ -9,7 +9,7 @@ let
|
||||||
|
|
||||||
src = sources.mattermost-server.outPath;
|
src = sources.mattermost-server.outPath;
|
||||||
|
|
||||||
vendorSha256 = "sha256-98riYN6MaBsKyaueogjXI7x3Lcionk0xcGt4DH684QU=";
|
vendorSha256 = "sha256-VvGLYOESyoBpFmIibHWxazliHcscMxf3KcQ46NQ4syk=";
|
||||||
|
|
||||||
subPackages = [ "cmd/mattermost" ];
|
subPackages = [ "cmd/mattermost" ];
|
||||||
|
|
||||||
|
|
|
@ -128,6 +128,12 @@ in {
|
||||||
ShowEmailAddress = false;
|
ShowEmailAddress = false;
|
||||||
ShowFullName = true;
|
ShowFullName = true;
|
||||||
};
|
};
|
||||||
|
# to disable the extra landing page advertising the app
|
||||||
|
NativeAppSettings = {
|
||||||
|
AppDownloadLink = "";
|
||||||
|
AndroidAppDownloadLink = "";
|
||||||
|
IosAppDownloadLink = "";
|
||||||
|
};
|
||||||
SupportSettings = {
|
SupportSettings = {
|
||||||
TermsOfServiceLink = "https://infra4future.de/nutzungsbedingungen.html";
|
TermsOfServiceLink = "https://infra4future.de/nutzungsbedingungen.html";
|
||||||
PrivacyPolicyLink = "https://infra4future.de/nutzungsbedingungen.html";
|
PrivacyPolicyLink = "https://infra4future.de/nutzungsbedingungen.html";
|
||||||
|
|
Loading…
Reference in a new issue