summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-09-05 21:30:33 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commitb89b2bb5f80411ac2da8b6ad26f7f1d30754b0c2 (patch)
tree32e6286454c5a2e8ffcbe89706bee72633f6a671
parentc6c3eee75273775252db470651a6c1bfc0d057e6 (diff)
siguix: Add quodlibet-mod.
* siguix/packages/quodlibet-mod.scm: New file.
-rw-r--r--siguix/packages/quodlibet-mod.scm33
1 files changed, 33 insertions, 0 deletions
diff --git a/siguix/packages/quodlibet-mod.scm b/siguix/packages/quodlibet-mod.scm
new file mode 100644
index 0000000..2b4e0e7
--- /dev/null
+++ b/siguix/packages/quodlibet-mod.scm
@@ -0,0 +1,33 @@
+;;; 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 quodlibet-mod)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix download)
+ #:use-module (guix git-download)
+ #:use-module (guix build-system python)
+ #:use-module (guix packages)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages music)
+ #:use-module (gnu packages freedesktop))
+
+(define-public quodlibet-mod
+ (package/inherit quodlibet
+ (name "quodlibet-mod")
+ (inputs (modify-inputs (package-inputs quodlibet)
+ (append libappindicator)))))