gnu: Add srt2vtt.
[jackhill/guix/guix.git] / gnu / packages / audio.scm
CommitLineData
fb68469f
RW
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages audio)
20 #:use-module (guix packages)
21 #:use-module (guix download)
22 #:use-module (guix git-download)
23 #:use-module ((guix licenses) #:prefix license:)
24 #:use-module (guix build-system gnu)
25 #:use-module (gnu packages)
26 #:use-module (gnu packages databases)
27 #:use-module (gnu packages linux))
28
29(define-public jack-1
30 (package
31 (name "jack")
32 (version "0.124.1")
33 (source (origin
34 (method url-fetch)
35 (uri (string-append
36 "http://jackaudio.org/downloads/jack-audio-connection-kit-"
37 version
38 ".tar.gz"))
39 (sha256
40 (base32
41 "1mk1wnx33anp6haxfjjkfhwbaknfblsvj35nxvz0hvspcmhdyhpb"))))
42 (build-system gnu-build-system)
43 (inputs
44 `(("bdb" ,bdb)
45 ("libuuid" ,util-linux)))
46 (home-page "http://jackaudio.org/")
47 (synopsis "JACK audio connection kit")
48 (description
49 "JACK is a low-latency audio server. It can connect a number of
50different applications to an audio device, as well as allowing them to share
51audio between themselves. JACK is different from other audio server efforts
52in that it has been designed from the ground up to be suitable for
53professional audio work. This means that it focuses on two key areas:
54synchronous execution of all clients, and low latency operation.")
55 ;; Most files are licensed under the GPL. However, the libjack/ tree is
56 ;; licensed under the LGPL in order to allow for proprietary usage.
e89fa047 57 (license (list license:gpl2+ license:lgpl2.1+))))