summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-04-05 12:12:26 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commit9356b9702a733960ad505b7e8bac260822219002 (patch)
treeed033169a3f15e68d742441bdb625d17c7c43481
parentf571514fc22d24c22ae97c8958885a135e5b62bc (diff)
siguix: Add cava-mod.
* siguix/packages/audio.scm (cava-mod): New variable. Inherit from cava to have an updated version.
-rw-r--r--siguix/packages/audio.scm43
1 files changed, 43 insertions, 0 deletions
diff --git a/siguix/packages/audio.scm b/siguix/packages/audio.scm
new file mode 100644
index 0000000..f5031a3
--- /dev/null
+++ b/siguix/packages/audio.scm
@@ -0,0 +1,43 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2021 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 audio)
+ #:use-module (gnu packages)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages)
+ #:use-module (guix git-download)
+ #:use-module (guix utils)
+ #:use-module (guix build-system gnu)
+ #:use-module (gnu packages audio)
+ #:use-module (gnu packages samba))
+
+(define-public cava-mod
+ (package/inherit cava
+ (name "cava-mod")
+ (version "0.7.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/karlstav/cava")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1ya5rq8msklm8pw55vv62ib4zz4gnk5m6f1dbikkga48fkdkzmq5"))))
+ (inputs (modify-inputs (package-inputs cava)
+ (append iniparser)))))