mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add jack-example-tools.
* gnu/packages/audio.scm (jack-example-tools): New variable.
This commit is contained in:
parent
d1f9519c00
commit
9518c61e70
1 changed files with 30 additions and 0 deletions
|
@ -2466,6 +2466,36 @@ (define-public jack-2
|
|||
;; Most files are under GPLv2+, but some headers are under LGPLv2.1+
|
||||
(license (list license:gpl2+ license:lgpl2.1+))))
|
||||
|
||||
(define-public jack-example-tools
|
||||
(package
|
||||
(name "jack-example-tools")
|
||||
(version "3")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jackaudio/jack-example-tools")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0x684clxqib1bq3zvvrqlh7hb3arb1bf672xyx1jbwv76dcmm5mh"))))
|
||||
(build-system meson-build-system)
|
||||
(inputs
|
||||
(list alsa-lib
|
||||
jack-2
|
||||
libsndfile
|
||||
opus
|
||||
readline))
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(home-page "https://github.com/jackaudio/jack-example-tools")
|
||||
(synopsis "Tools for JACK connections")
|
||||
(description "This package provides tools for managing JACK connections
|
||||
and testing or configuring the JACK session. Tools include @code{jack_lsp},
|
||||
@code{jack_connect}, and @code{jack_transport}.")
|
||||
;; Most files are under GPLv2+, but zalsa is GPLv3+.
|
||||
(license (list license:gpl2+ license:gpl3+))))
|
||||
|
||||
(define-public jacktrip
|
||||
(package
|
||||
(name "jacktrip")
|
||||
|
|
Loading…
Reference in a new issue