[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: Add qjackctl.
From: |
Ludovic Courtès |
Subject: |
02/02: gnu: Add qjackctl. |
Date: |
Tue, 4 Apr 2017 08:30:07 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 0d78e3774616d71c6929c48ce0253088d201957c
Author: Mark Meyer <address@hidden>
Date: Mon Apr 3 19:58:49 2017 +0200
gnu: Add qjackctl.
* gnu/packages/audio.scm (qjackctl): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/audio.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 86a149b..d9fdd6c 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1792,6 +1792,36 @@ buffers, and audio capture.")
and ALSA.")
(license license:gpl3+)))
+(define-public qjackctl
+ (package
+ (name "qjackctl")
+ (version "0.4.4")
+ (source (origin
+ (method url-fetch)
+ (uri
+ (string-append
+ "https://downloads.sourceforge.net/project/qjackctl/qjackctl/"
+ version "/qjackctl-" version ".tar.gz"))
+ (sha256
+ (base32
+ "19bbljb3iz5ss4s5fmra1dxabg2fnp61sa51d63zsm56xkvv47ak"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f)) ; no check target
+
+ (inputs
+ `(("jack-2" ,jack-2)
+ ("qt" ,qt)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("qttools" ,qttools)))
+ (home-page "https://qjackctl.sourceforge.io/")
+ (synopsis "Jack server control application")
+ (description "Control a Jack server. Allows you to plug various sources
+into various outputs and to start, stop and configure jackd")
+ (license license:gpl2+)))
+
+
(define-public raul
(package
(name "raul")