From 534029549980b4aa9435627052ab72d3a3f43648 Mon Sep 17 00:00:00 2001 From: nik gaffney Date: Wed, 13 Mar 2024 11:03:41 +0100 Subject: [PATCH] Put in earplugs --- channel/zzkt/packages/mattermost.scm | 44 ++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 channel/zzkt/packages/mattermost.scm diff --git a/channel/zzkt/packages/mattermost.scm b/channel/zzkt/packages/mattermost.scm new file mode 100644 index 0000000..dd1081d --- /dev/null +++ b/channel/zzkt/packages/mattermost.scm @@ -0,0 +1,44 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2024 nik gaffney +;;; +;;; This file is not (yet) part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (zzkt packages mattermost) + #:use-module (guix) + #:use-module (guix build-system copy) + #:use-module ((guix licenses) + #:prefix license:)) + +;; https://releases.mattermost.com/desktop/5.6.0/mattermost-desktop-5.6.0-linux-x64.tar.gz + +;; https://github.com/mattermost/desktop + +(define-public mattermost-client + (package + (name "gephi-binary") + (version "5.6.0") + (source + (origin + (method url-fetch) + (uri "https://releases.mattermost.com/desktop/5.6.0/mattermost-desktop-5.6.0-linux-x64.tar.gz") + (sha256 + (base32 "")))) + (build-system copy-build-system) + (home-page "https://mattermost.com/") + (synopsis "Collaboration platform for technical and operational teams. (binary release)") + (description + "Work together effectively with real-time communication, file and code snippet sharing, in-line code syntax highlighting, and workflow automation purpose-built for technical teams.") + (license license:asl2.0)))