mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add qjackctl.
* gnu/packages/audio.scm (qjackctl): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
b7506f74df
commit
0d78e37746
1 changed files with 30 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue