mattermost 8.1.7 → 8.1.8

This commit is contained in:
stuebinm 2024-01-19 00:58:12 +01:00
parent c0f37da12f
commit abfc5618e9
3 changed files with 12 additions and 12 deletions

View file

@ -496,16 +496,16 @@
"mattermost-server": { "mattermost-server": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1701211274, "lastModified": 1702663737,
"narHash": "sha256-ZpjdJ1Uck0kM+togUKpxRij8V0jQX+12Meks+L1Tc90=", "narHash": "sha256-v2oBnKK189M+bH4OPgoL+70egyC9XPZUGEcWX2eF1fo=",
"owner": "mattermost", "owner": "mattermost",
"repo": "mattermost-server", "repo": "mattermost-server",
"rev": "77aeda5cedc8ef60d06da024202b8c7999efd671", "rev": "eb0621908b3d9ecef077b855b25111431097b0d0",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "mattermost", "owner": "mattermost",
"ref": "v8.1.7", "ref": "v8.1.8",
"repo": "mattermost-server", "repo": "mattermost-server",
"type": "github" "type": "github"
} }
@ -513,14 +513,14 @@
"mattermost-webapp": { "mattermost-webapp": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1701212296, "lastModified": 1702664631,
"narHash": "sha256-AZGnnpr99d/r6+dCG7ZMcrRnebuHJNykZ02Tu/LfD4o=", "narHash": "sha256-zA9DPZMQNADRP9/0L8UVnKGkmi//+8WXvljDX1xq+QI=",
"type": "tarball", "type": "tarball",
"url": "https://releases.mattermost.com/8.1.7/mattermost-8.1.7-linux-amd64.tar.gz" "url": "https://releases.mattermost.com/8.1.8/mattermost-8.1.8-linux-amd64.tar.gz"
}, },
"original": { "original": {
"type": "tarball", "type": "tarball",
"url": "https://releases.mattermost.com/8.1.7/mattermost-8.1.7-linux-amd64.tar.gz" "url": "https://releases.mattermost.com/8.1.8/mattermost-8.1.8-linux-amd64.tar.gz"
} }
}, },
"napalm": { "napalm": {

View file

@ -2,9 +2,9 @@
description = "hacc infra stuff"; description = "hacc infra stuff";
inputs = { inputs = {
mattermost-webapp.url = "https://releases.mattermost.com/8.1.7/mattermost-8.1.7-linux-amd64.tar.gz"; mattermost-webapp.url = "https://releases.mattermost.com/8.1.8/mattermost-8.1.8-linux-amd64.tar.gz";
mattermost-webapp.flake = false; mattermost-webapp.flake = false;
mattermost-server.url = "github:mattermost/mattermost-server?ref=v8.1.7"; mattermost-server.url = "github:mattermost/mattermost-server?ref=v8.1.8";
mattermost-server.flake = false; mattermost-server.flake = false;
nixpkgs.url = "nixpkgs/nixos-23.11"; nixpkgs.url = "nixpkgs/nixos-23.11";

View file

@ -1,7 +1,7 @@
{ stdenv, fetchurl, fetchFromGitHub, buildGoModule, buildEnv, lib, sources }: { stdenv, fetchurl, fetchFromGitHub, buildGoModule, buildEnv, lib, sources }:
let let
version = "8.1.7"; version = "8.1.8";
mattermost-server = buildGoModule rec { mattermost-server = buildGoModule rec {
pname = "mattermost-server"; pname = "mattermost-server";
@ -9,7 +9,7 @@ let
src = "${sources.mattermost-server}/server"; src = "${sources.mattermost-server}/server";
vendorHash = "sha256-RPnCAxksKppsjVtZYhwcoJuAmMJ85AstuoBFChKwAOk="; vendorHash = "sha256-a2C+q24+UI0ZgSVI2JcsVDcNaSDLa4yckYqRVxbAl8M=";
subPackages = [ "cmd/mattermost" ]; subPackages = [ "cmd/mattermost" ];