2013-10-04 20:45:49 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-01-07 08:44:10 +00:00
|
|
|
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2016-02-10 21:59:53 +00:00
|
|
|
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
2016-01-24 15:55:52 +00:00
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
2013-10-04 20:45:49 +00: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 20:44:22 +00:00
|
|
|
#:use-module ((guix licenses) #:prefix l:)
|
2013-10-04 20:45:49 +00:00
|
|
|
#:use-module (guix build-system gnu)
|
2013-11-01 03:05:27 +00:00
|
|
|
#:use-module (gnu packages)
|
2014-01-23 18:05:09 +00:00
|
|
|
#:use-module (gnu packages algebra)
|
2015-04-20 13:50:59 +00:00
|
|
|
#:use-module (gnu packages autotools)
|
2013-10-04 20:45:49 +00:00
|
|
|
#:use-module (gnu packages avahi)
|
2014-01-23 18:05:09 +00:00
|
|
|
#:use-module (gnu packages check)
|
2015-10-29 15:48:32 +00:00
|
|
|
#:use-module (gnu packages databases)
|
2013-10-04 20:45:49 +00:00
|
|
|
#:use-module (gnu packages glib)
|
2013-10-10 19:20:21 +00:00
|
|
|
#:use-module (gnu packages gtk)
|
|
|
|
#:use-module (gnu packages libcanberra)
|
2014-06-24 12:53:51 +00:00
|
|
|
#:use-module (gnu packages web)
|
2014-01-23 18:05:09 +00:00
|
|
|
#:use-module (gnu packages linux)
|
2013-10-04 20:45:49 +00:00
|
|
|
#:use-module (gnu packages m4)
|
2014-01-23 18:05:09 +00:00
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages xiph)
|
2013-10-04 20:45:49 +00:00
|
|
|
#:export (libsndfile
|
|
|
|
libsamplerate
|
|
|
|
pulseaudio))
|
|
|
|
|
|
|
|
(define libsndfile
|
|
|
|
(package
|
|
|
|
(name "libsndfile")
|
2016-02-10 21:59:53 +00:00
|
|
|
(version "1.0.26")
|
2013-10-04 20:45:49 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://www.mega-nerd.com/libsndfile/files/libsndfile-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-02-10 21:59:53 +00:00
|
|
|
"14jhla289cj45946h0hq2an0a9g4wkwb3v4571bla6ixfvn20rfd"))))
|
2013-10-04 20:45:49 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libvorbis" ,libvorbis)
|
|
|
|
("libogg" ,libogg)
|
2015-12-06 16:12:14 +00:00
|
|
|
("flac" ,flac)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
2013-10-04 20:45:49 +00:00
|
|
|
(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)
|
2015-12-06 16:12:14 +00:00
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
2013-10-04 20:45:49 +00:00
|
|
|
(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
|
gnu packages: Clean up synopses and descriptions.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm, gnu/packages/bittorrent.scm,
gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/databases.scm, gnu/packages/enchant.scm,
gnu/packages/firmware.scm, gnu/packages/fonts.scm,
gnu/packages/freedesktop.scm, gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gsasl.scm,
gnu/packages/gstreamer.scm, gnu/packages/gtk.scm, gnu/packages/guile.scm,
gnu/packages/haskell.scm, gnu/packages/language.scm,
gnu/packages/lesstif.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/llvm.scm, gnu/packages/maths.scm,
gnu/packages/mcrypt.scm, gnu/packages/mit-krb5.scm, gnu/packages/mp3.scm,
gnu/packages/ncdu.scm, gnu/packages/networking.scm, gnu/packages/ntp.scm,
gnu/packages/ocaml.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/pretty-print.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm,
gnu/packages/rdesktop.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm,
gnu/packages/slang.scm, gnu/packages/slim.scm, gnu/packages/telephony.scm,
gnu/packages/tls.scm, gnu/packages/tmux.scm, gnu/packages/tre.scm,
gnu/packages/unrtf.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wget.scm,
gnu/packages/xdisorg.scm, gnu/packages/xfce.scm, gnu/packages/xiph.scm:
Fix typos. Trim long lines. Add missing periods in the end of sentences.
Use double spaces between sentences. Remove trailing whitespaces.
2015-07-17 12:16:07 +00:00
|
|
|
rates.")
|
2013-10-04 20:45:49 +00:00
|
|
|
(license l:gpl2+)))
|
|
|
|
|
|
|
|
(define pulseaudio
|
|
|
|
(package
|
|
|
|
(name "pulseaudio")
|
2016-01-24 15:55:52 +00:00
|
|
|
(version "8.0")
|
2013-10-04 20:45:49 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2016-01-24 15:55:52 +00:00
|
|
|
"https://freedesktop.org/software/pulseaudio/releases/"
|
|
|
|
name "-" version ".tar.xz"))
|
2013-10-04 20:45:49 +00:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-01-24 15:55:52 +00:00
|
|
|
"128rrlvrgb4ia3pbzipf5mi6nvrpm6zmxn5r3bynqiikhvify3k9"))
|
2014-09-15 21:58:30 +00: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 07:39:34 +00:00
|
|
|
(string-append "#" all "\n"))))
|
2015-03-31 18:13:29 +00:00
|
|
|
(patches
|
|
|
|
(list (search-patch "pulseaudio-fix-mult-test.patch")
|
|
|
|
(search-patch "pulseaudio-longer-test-timeout.patch")))))
|
2013-10-04 20:45:49 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2015-03-14 15:29:56 +00: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 20:45:49 +00: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 17:53:37 +00: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 15:47:19 +00:00
|
|
|
%standard-phases)))
|
2013-10-04 20:45:49 +00: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)
|
|
|
|
("m4" ,m4)
|
2015-01-07 08:44:10 +00:00
|
|
|
("libltdl" ,libltdl)
|
2014-03-22 18:00:50 +00:00
|
|
|
("fftwf" ,fftwf)
|
2013-10-04 20:45:49 +00:00
|
|
|
("avahi" ,avahi)
|
2015-03-14 15:29:56 +00:00
|
|
|
("eudev" ,eudev) ;for the detection of hardware audio devices
|
2013-10-04 20:45:49 +00:00
|
|
|
("check" ,check)))
|
2015-12-06 16:12:14 +00:00
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
2013-10-04 20:45:49 +00:00
|
|
|
(propagated-inputs
|
|
|
|
;; 'libpulse*.la' contain `-lgdbm' and `-lcap', so propagate them.
|
2013-10-05 14:52:20 +00:00
|
|
|
`(("libcap" ,libcap)
|
2013-10-04 20:45:49 +00:00
|
|
|
("gdbm" ,gdbm)))
|
|
|
|
(home-page "http://www.pulseaudio.org/")
|
|
|
|
(synopsis "Sound server")
|
|
|
|
(description
|
gnu packages: Clean up synopses and descriptions.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm, gnu/packages/bittorrent.scm,
gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/databases.scm, gnu/packages/enchant.scm,
gnu/packages/firmware.scm, gnu/packages/fonts.scm,
gnu/packages/freedesktop.scm, gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gsasl.scm,
gnu/packages/gstreamer.scm, gnu/packages/gtk.scm, gnu/packages/guile.scm,
gnu/packages/haskell.scm, gnu/packages/language.scm,
gnu/packages/lesstif.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/llvm.scm, gnu/packages/maths.scm,
gnu/packages/mcrypt.scm, gnu/packages/mit-krb5.scm, gnu/packages/mp3.scm,
gnu/packages/ncdu.scm, gnu/packages/networking.scm, gnu/packages/ntp.scm,
gnu/packages/ocaml.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/pretty-print.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm,
gnu/packages/rdesktop.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm,
gnu/packages/slang.scm, gnu/packages/slim.scm, gnu/packages/telephony.scm,
gnu/packages/tls.scm, gnu/packages/tmux.scm, gnu/packages/tre.scm,
gnu/packages/unrtf.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wget.scm,
gnu/packages/xdisorg.scm, gnu/packages/xfce.scm, gnu/packages/xiph.scm:
Fix typos. Trim long lines. Add missing periods in the end of sentences.
Use double spaces between sentences. Remove trailing whitespaces.
2015-07-17 12:16:07 +00:00
|
|
|
"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.")
|
2013-10-04 20:45:49 +00:00
|
|
|
|
|
|
|
;; 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 19:20:21 +00:00
|
|
|
|
|
|
|
(define-public pavucontrol
|
|
|
|
(package
|
|
|
|
(name "pavucontrol")
|
2015-08-17 07:42:05 +00:00
|
|
|
(version "3.0")
|
2013-10-10 19:20:21 +00:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2016-02-19 13:23:38 +00:00
|
|
|
"https://freedesktop.org/software/pulseaudio/pavucontrol/pavucontrol-"
|
2013-10-10 19:20:21 +00:00
|
|
|
version
|
|
|
|
".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2015-08-17 07:42:05 +00:00
|
|
|
"14486c6lmmirkhscbfygz114f6yzf97h35n3h3pdr27w4mdfmlmk"))))
|
2013-10-10 19:20:21 +00:00
|
|
|
(build-system gnu-build-system)
|
2015-10-27 12:01:35 +00:00
|
|
|
(arguments
|
|
|
|
'(#:configure-flags '("CXXFLAGS=-std=c++11"))) ; required by gtkmm
|
2013-10-10 19:20:21 +00:00
|
|
|
(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 11:01:56 +00:00
|
|
|
`(("libcanberra" ,libcanberra)
|
2013-10-10 19:20:21 +00: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 11:01:56 +00:00
|
|
|
("pulseaudio" ,pulseaudio)))
|
|
|
|
(native-inputs
|
|
|
|
`(("intltool" ,intltool)
|
2013-10-10 19:20:21 +00: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+)))
|