summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-08-27 15:45:50 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commit96dfa3c8426231f77ca52d57324701594aa3264d (patch)
tree281e1cbc5f4ef492390e5a6ff9a59c8974929e11
parentcc0e3b3db8dcd251f0af9c2a07c9893c7d42ecbc (diff)
siguix: Remove transmission-mod.
* siguix/packages/transmission.scm: Remove file.
-rw-r--r--siguix/packages/transmission.scm38
1 files changed, 0 insertions, 38 deletions
diff --git a/siguix/packages/transmission.scm b/siguix/packages/transmission.scm
deleted file mode 100644
index 38aea30..0000000
--- a/siguix/packages/transmission.scm
+++ /dev/null
@@ -1,38 +0,0 @@
-;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2022 Simon Streit <simon@netpanic.org>
-;;;
-;;; This file is NOT 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 <http://www.gnu.org/licenses/>.
-
-(define-module (siguix packages transmission)
- #:use-module (guix packages)
- #:use-module (guix download)
- #:use-module (guix git-download)
- #:use-module (guix build-system cmake)
- #:use-module (guix build-system gnu)
- #:use-module (guix build-system python)
- #:use-module (guix build-system glib-or-gtk)
- #:use-module ((guix licenses) #:prefix l:)
- #:use-module (guix gexp)
- #:use-module (guix utils)
- #:use-module (gnu packages)
- #:use-module (gnu packages bittorrent)
- #:use-module (gnu packages freedesktop))
-
-(define-public transmission-mod
- (package/inherit transmission
- (name "transmission-mod")
- (inputs (modify-inputs (package-inputs transmission)
- (append libappindicator)))))