3
5
Fork 0
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:
Mark Meyer 2017-04-03 19:58:49 +02:00 committed by Ludovic Courtès
parent b7506f74df
commit 0d78e37746
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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")