2013-10-04 22:45:49 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-01-07 09:44:10 +01:00
|
|
|
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2015-03-31 20:13:29 +02:00
|
|
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
2013-10-04 22:45:49 +02:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages pulseaudio)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
Use #:prefix instead of #:renamer with 'symbol-prefix-proc'.
* gnu/packages/abiword.scm, gnu/packages/admin.scm, gnu/packages/aidc.scm,
gnu/packages/backup.scm, gnu/packages/bittorrent.scm,
gnu/packages/boost.scm, gnu/packages/compression.scm,
gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/dc.scm, gnu/packages/emacs.scm,
gnu/packages/fonts.scm, gnu/packages/fontutils.scm, gnu/packages/geeqie.scm,
gnu/packages/ghostscript.scm, gnu/packages/gimp.scm,
gnu/packages/gkrellm.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm, gnu/packages/gnuzilla.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/gv.scm, gnu/packages/image.scm,
gnu/packages/indent.scm, gnu/packages/inkscape.scm,
gnu/packages/lesstif.scm, gnu/packages/links.scm, gnu/packages/lisp.scm,
gnu/packages/lsh.scm, gnu/packages/lsof.scm, gnu/packages/maths.scm,
gnu/packages/mp3.scm, gnu/packages/openssl.scm, gnu/packages/ots.scm,
gnu/packages/pciutils.scm, gnu/packages/pcre.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm, gnu/packages/slim.scm,
gnu/packages/ssh.scm, gnu/packages/texlive.scm, gnu/packages/vim.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wv.scm,
gnu/packages/xiph.scm, gnu/packages/xml.scm, gnu/packages/xorg.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm,
guix/build/cmake-build-system.scm, guix/build/perl-build-system.scm,
guix/build/python-build-system.scm, guix/download.scm: Replaces uses of
#:renamer and 'symbol-prefix-proc' with #:prefix.
2014-09-23 22:44:22 +02:00
|
|
|
#:use-module ((guix licenses) #:prefix l:)
|
2013-10-04 22:45:49 +02:00
|
|
|
#:use-module (guix build-system gnu)
|
2013-11-01 04:05:27 +01:00
|
|
|
#:use-module (gnu packages)
|
2014-01-23 19:05:09 +01:00
|
|
|
#:use-module (gnu packages algebra)
|
2015-01-07 09:44:10 +01:00
|
|
|
#:use-module ((gnu packages autotools) #:select (libltdl))
|
2013-10-04 22:45:49 +02:00
|
|
|
#:use-module (gnu packages avahi)
|
2014-01-23 19:05:09 +01:00
|
|
|
#:use-module (gnu packages check)
|
|
|
|
#:use-module (gnu packages gdbm)
|
2013-10-04 22:45:49 +02:00
|
|
|
#:use-module (gnu packages glib)
|
2013-10-10 21:20:21 +02:00
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
#:use-module (gnu packages libcanberra)
|
2014-06-24 14:53:51 +02:00
|
|
|
#:use-module (gnu packages web)
|
2014-01-23 19:05:09 +01:00
|
|
|
#:use-module (gnu packages linux)
|
2013-10-04 22:45:49 +02:00
|
|
|
#:use-module (gnu packages m4)
|
2014-01-23 19:05:09 +01:00
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages xiph)
|
2013-10-04 22:45:49 +02:00
|
|
|
#:export (libsndfile
|
|
|
|
libsamplerate
|
|
|
|
pulseaudio))
|
|
|
|
|
|
|
|
(define libsndfile
|
|
|
|
(package
|
|
|
|
(name "libsndfile")
|
|
|
|
(version "1.0.25")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://www.mega-nerd.com/libsndfile/files/libsndfile-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"10j8mbb65xkyl0kfy0hpzpmrp0jkr12c7mfycqipxgka6ayns0ar"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libvorbis" ,libvorbis)
|
|
|
|
("libogg" ,libogg)
|
|
|
|
("flac" ,flac)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "http://www.mega-nerd.com/libsndfile/")
|
|
|
|
(synopsis "Reading and writing files containing sampled sound")
|
|
|
|
(description
|
|
|
|
"Libsndfile is a C library for reading and writing files containing
|
|
|
|
sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through
|
|
|
|
one standard library interface.
|
|
|
|
|
|
|
|
It was designed to handle both little-endian (such as WAV) and
|
|
|
|
big-endian (such as AIFF) data, and to compile and run correctly on
|
|
|
|
little-endian (such as Intel and DEC/Compaq Alpha) processor systems as well
|
|
|
|
as big-endian processor systems such as Motorola 68k, Power PC, MIPS and
|
|
|
|
SPARC. Hopefully the design of the library will also make it easy to extend
|
|
|
|
for reading and writing new sound file formats.")
|
|
|
|
(license l:gpl2+)))
|
|
|
|
|
|
|
|
(define libsamplerate
|
|
|
|
(package
|
|
|
|
(name "libsamplerate") ; aka. Secret Rabbit Code (SRC)
|
|
|
|
(version "0.1.8")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://www.mega-nerd.com/SRC/libsamplerate-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"01hw5xjbjavh412y63brcslj5hi9wdgkjd3h9csx5rnm8vglpdck"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("libsndfile" ,libsndfile)
|
|
|
|
("fftw" ,fftw)))
|
|
|
|
(home-page "http://www.mega-nerd.com/SRC/index.html")
|
|
|
|
(synopsis "Audio sample rate conversion library")
|
|
|
|
(description
|
|
|
|
"Secret Rabbit Code (aka. libsamplerate) is a Sample Rate Converter for
|
|
|
|
audio. One example of where such a thing would be useful is converting audio
|
|
|
|
from the CD sample rate of 44.1kHz to the 48kHz sample rate used by DAT
|
|
|
|
players.
|
|
|
|
|
|
|
|
SRC is capable of arbitrary and time varying conversions; from downsampling by
|
|
|
|
a factor of 256 to upsampling by the same factor. Arbitrary in this case means
|
|
|
|
that the ratio of input and output sample rates can be an irrational
|
|
|
|
number. The conversion ratio can also vary with time for speeding up and
|
|
|
|
slowing down effects.
|
|
|
|
|
|
|
|
SRC provides a small set of converters to allow quality to be traded off
|
|
|
|
against computation cost. The current best converter provides a
|
|
|
|
signal-to-noise ratio of 145dB with -3dB passband extending from DC to 96% of
|
|
|
|
the theoretical best bandwidth for a given pair of input and output sample
|
|
|
|
rates. ")
|
|
|
|
(license l:gpl2+)))
|
|
|
|
|
|
|
|
(define pulseaudio
|
|
|
|
(package
|
|
|
|
(name "pulseaudio")
|
2015-03-14 16:29:56 +01:00
|
|
|
(version "6.0")
|
2013-10-04 22:45:49 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://freedesktop.org/software/pulseaudio/releases/pulseaudio-"
|
|
|
|
version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2015-03-14 16:29:56 +01:00
|
|
|
"1xpnfxa0d8pgf6b4qdgnkcvrvdxbbbjd5ync19h0f5hbp3h401mm"))
|
2014-09-15 23:58:30 +02:00
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
;; Disable console-kit support by default since it's deprecated
|
|
|
|
;; anyway.
|
|
|
|
'(substitute* "src/daemon/default.pa.in"
|
|
|
|
(("load-module module-console-kit" all)
|
2014-10-24 09:39:34 +02:00
|
|
|
(string-append "#" all "\n"))))
|
2015-03-31 20:13:29 +02:00
|
|
|
(patches
|
|
|
|
(list (search-patch "pulseaudio-fix-mult-test.patch")
|
|
|
|
(search-patch "pulseaudio-longer-test-timeout.patch")))))
|
2013-10-04 22:45:49 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2015-03-14 16:29:56 +01:00
|
|
|
`(#:configure-flags (list "--localstatedir=/var" ;"--sysconfdir=/etc"
|
|
|
|
"--disable-oss-output"
|
|
|
|
(string-append "--with-udev-rules-dir="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/lib/udev/rules.d"))
|
2013-10-04 22:45:49 +02:00
|
|
|
#:phases (alist-cons-before
|
|
|
|
'check 'pre-check
|
|
|
|
(lambda _
|
|
|
|
;; 'tests/lock-autospawn-test.c' wants to create a file
|
|
|
|
;; under ~/.config/pulse.
|
2014-04-01 19:53:37 +02:00
|
|
|
(setenv "HOME" (getcwd))
|
|
|
|
;; 'thread-test' needs more time on hydra and on slower
|
|
|
|
;; machines, so we set the default timeout to 120 seconds.
|
|
|
|
(setenv "CK_DEFAULT_TIMEOUT" "120"))
|
2014-01-03 16:47:19 +01:00
|
|
|
%standard-phases)))
|
2013-10-04 22:45:49 +02:00
|
|
|
(inputs
|
|
|
|
;; TODO: Add optional inputs (GTK+?).
|
|
|
|
`(;; ("sbc" ,sbc)
|
|
|
|
("alsa-lib" ,alsa-lib)
|
|
|
|
("json-c" ,json-c)
|
|
|
|
("speex" ,speex)
|
|
|
|
("libsndfile" ,libsndfile)
|
|
|
|
("libsamplerate" ,libsamplerate)
|
|
|
|
("dbus" ,dbus)
|
|
|
|
("glib" ,glib)
|
|
|
|
("intltool" ,intltool)
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
("m4" ,m4)
|
2015-01-07 09:44:10 +01:00
|
|
|
("libltdl" ,libltdl)
|
2014-03-22 19:00:50 +01:00
|
|
|
("fftwf" ,fftwf)
|
2013-10-04 22:45:49 +02:00
|
|
|
("avahi" ,avahi)
|
2015-03-14 16:29:56 +01:00
|
|
|
("eudev" ,eudev) ;for the detection of hardware audio devices
|
2013-10-04 22:45:49 +02:00
|
|
|
("check" ,check)))
|
|
|
|
(propagated-inputs
|
|
|
|
;; 'libpulse*.la' contain `-lgdbm' and `-lcap', so propagate them.
|
2013-10-05 16:52:20 +02:00
|
|
|
`(("libcap" ,libcap)
|
2013-10-04 22:45:49 +02:00
|
|
|
("gdbm" ,gdbm)))
|
|
|
|
(home-page "http://www.pulseaudio.org/")
|
|
|
|
(synopsis "Sound server")
|
|
|
|
(description
|
|
|
|
"PulseAudio is a sound server. It is basically a proxy for your sound applications.
|
|
|
|
It allows you to do advanced operations on your sound data as it passes
|
|
|
|
between your application and your hardware. Things like transferring the
|
|
|
|
audio to a different machine, changing the sample format or channel count and
|
|
|
|
mixing several sounds into one are easily achieved using a sound server. ")
|
|
|
|
|
|
|
|
;; PulseAudio is LGPLv2+, but some of the optional dependencies (GNU dbm,
|
|
|
|
;; FFTW, etc.) are GPL'd, so the result is effectively GPLv2+. See
|
|
|
|
;; 'LICENSE' for details.
|
|
|
|
(license l:gpl2+)))
|
2013-10-10 21:20:21 +02:00
|
|
|
|
|
|
|
(define-public pavucontrol
|
|
|
|
(package
|
|
|
|
(name "pavucontrol")
|
|
|
|
(version "2.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://freedesktop.org/software/pulseaudio/pavucontrol/pavucontrol-"
|
|
|
|
version
|
|
|
|
".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2015-03-15 23:38:32 +01:00
|
|
|
"02s775m1531sshwlbvfddk3pz8zjmwkv1sgzggn386ja3gc9vwi2"))
|
|
|
|
(patches (list (search-patch "pavucontrol-sigsegv.patch")))))
|
2013-10-10 21:20:21 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
gnu: Move numerous "inputs" which should be "native-inputs".
* gnu/packages/avahi.scm, gnu/packages/cdrom.scm, gnu/packages/cryptsetup.scm,
gnu/packages/curl.scm, gnu/packages/emacs.scm, gnu/packages/fontutils.scm,
gnu/packages/gdb.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/glib.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm, gnu/packages/graphviz.scm,
gnu/packages/groff.scm, gnu/packages/gstreamer.scm, gnu/packages/gtk.scm,
gnu/packages/gv.scm, gnu/packages/imagemagick.scm, gnu/packages/irssi.scm,
gnu/packages/kde.scm, gnu/packages/libcanberra.scm, gnu/packages/libtiff.scm,
gnu/packages/linux.scm, gnu/packages/lvm.scm, gnu/packages/mp3.scm,
gnu/packages/netpbm.scm, gnu/packages/parted.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/qemu.scm, gnu/packages/qt.scm,
gnu/packages/ratpoison.scm, gnu/packages/rdf.scm, gnu/packages/slim.scm,
gnu/packages/texlive.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/xml.scm, gnu/packages/xnee.scm, gnu/packages/xorg.scm,
gnu/packages/zip.scm: Move some build-time dependencies from `inputs' to
`native-inputs'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2013-12-15 12:01:56 +01:00
|
|
|
`(("libcanberra" ,libcanberra)
|
2013-10-10 21:20:21 +02:00
|
|
|
("gtkmm" ,gtkmm)
|
gnu: Move numerous "inputs" which should be "native-inputs".
* gnu/packages/avahi.scm, gnu/packages/cdrom.scm, gnu/packages/cryptsetup.scm,
gnu/packages/curl.scm, gnu/packages/emacs.scm, gnu/packages/fontutils.scm,
gnu/packages/gdb.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/glib.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm, gnu/packages/graphviz.scm,
gnu/packages/groff.scm, gnu/packages/gstreamer.scm, gnu/packages/gtk.scm,
gnu/packages/gv.scm, gnu/packages/imagemagick.scm, gnu/packages/irssi.scm,
gnu/packages/kde.scm, gnu/packages/libcanberra.scm, gnu/packages/libtiff.scm,
gnu/packages/linux.scm, gnu/packages/lvm.scm, gnu/packages/mp3.scm,
gnu/packages/netpbm.scm, gnu/packages/parted.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/qemu.scm, gnu/packages/qt.scm,
gnu/packages/ratpoison.scm, gnu/packages/rdf.scm, gnu/packages/slim.scm,
gnu/packages/texlive.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/xml.scm, gnu/packages/xnee.scm, gnu/packages/xorg.scm,
gnu/packages/zip.scm: Move some build-time dependencies from `inputs' to
`native-inputs'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2013-12-15 12:01:56 +01:00
|
|
|
("pulseaudio" ,pulseaudio)))
|
|
|
|
(native-inputs
|
|
|
|
`(("intltool" ,intltool)
|
2013-10-10 21:20:21 +02:00
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "http://freedesktop.org/software/pulseaudio/pavucontrol/")
|
|
|
|
(synopsis "PulseAudio volume control")
|
|
|
|
(description
|
|
|
|
"PulseAudio Volume Control (pavucontrol) provides a GTK+
|
|
|
|
graphical user interface to connect to a PulseAudio server and
|
|
|
|
easily control the volume of all clients, sinks, etc.")
|
|
|
|
(license l:gpl2+)))
|