summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-07-07 19:40:57 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commitfbd26a6f5696d1e10f2df6a00510c612dea250d8 (patch)
tree2d7830a320e9062c7f8b3aad885fcb887e15b2d8
parentf94c7e6d99facdf3053b163e46531c6b5fa8ef56 (diff)
siguix: Add transmission-mod.
* siguix/packages/transmission.scm (transmission-mod): New variable. [inputs]: Add libappindicator.
-rw-r--r--siguix/packages/transmission.scm38
1 files changed, 38 insertions, 0 deletions
diff --git a/siguix/packages/transmission.scm b/siguix/packages/transmission.scm
new file mode 100644
index 0000000..38aea30
--- /dev/null
+++ b/siguix/packages/transmission.scm
@@ -0,0 +1,38 @@
+;;; 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)))))