diff options
| author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-06-07 17:51:11 +0200 |
|---|---|---|
| committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-06-07 17:51:48 +0200 |
| commit | 7602790c53dd993410038904d764e379370bcf93 (patch) | |
| tree | cc9fb5678b43586fa4342379be0cce47c29cfca8 | |
| parent | 4023cc627410fd854988bf01edc3116985081d1a (diff) | |
| download | matterbridge-7602790c53dd993410038904d764e379370bcf93.tar.gz matterbridge-7602790c53dd993410038904d764e379370bcf93.tar.bz2 matterbridge-7602790c53dd993410038904d764e379370bcf93.zip | |
Remove matterbridge.scm as it is now available in Guix
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
| -rw-r--r-- | Makefile | 1 | ||||
| -rw-r--r-- | gnu/packages/matterbridge.scm | 45 |
2 files changed, 0 insertions, 46 deletions
@@ -13,7 +13,6 @@ help: matterbridge.tar.xz: rm -f $@ cp `guix pack \ - -L ./ \ --save-provenance -RR \ --compression=xz \ matterbridge \ diff --git a/gnu/packages/matterbridge.scm b/gnu/packages/matterbridge.scm deleted file mode 100644 index 0c265b1..0000000 --- a/gnu/packages/matterbridge.scm +++ /dev/null @@ -1,45 +0,0 @@ -;;; Copyright © 2021 Denis Carikli <GNUtoo@cyberdimension.org> -;;; -;;; This file is not part of GNU Guix (yet). -;;; -;;; This file 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. -;;; -;;; This file 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 <http://www.gnu.org/licenses/>. -(define-module (gnu packages matterbridge) - #:use-module (guix download) - #:use-module ((guix licenses) #:prefix license:) - #:use-module (guix packages) - #:use-module (gnu packages golang) - #:use-module (guix build-system go)) - -(define-public matterbridge - (package - (name "matterbridge") - (version "1.22.2") - (source - (origin - (method url-fetch) - (uri - (string-append - "https://github.com/42wim/matterbridge/archive/v" version ".tar.gz")) - (sha256 - (base32 - "1p3mkfzv4xwm7vz8ja7qsa99qwxb9s61hnjjv65dkkjivlsif5hk")))) - (build-system go-build-system) - (arguments - `(#:import-path "github.com/42wim/matterbridge" - #:unpack-path "github.com/42wim/matterbridge")) - (synopsis "Multi-protocols instant messaging bridge") - (description "Multi-protocols (IRC/XMPP/Mattermost/Slack/Matrix/etc) bridge") - (home-page "https://github.com/42wim/matterbridge") - (license license:asl2.0))) - |
