From 2887933c8b0a97866bb3c02aa4ed995dda74bbd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 19 Dec 2008 14:56:37 +0000 Subject: [PATCH] Add PulseAudio, an audio server. svn path=/nixpkgs/trunk/; revision=13659 --- pkgs/servers/pulseaudio/default.nix | 42 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 8 ++++++ 2 files changed, 50 insertions(+) create mode 100644 pkgs/servers/pulseaudio/default.nix diff --git a/pkgs/servers/pulseaudio/default.nix b/pkgs/servers/pulseaudio/default.nix new file mode 100644 index 000000000000..7244eac46318 --- /dev/null +++ b/pkgs/servers/pulseaudio/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchurl, pkgconfig, gnum4, gdbm, libtool, glib, dbus, hal, avahi +, gconf, liboil, intltool, gettext +, libsamplerate, libsndfile, speex }: + +stdenv.mkDerivation rec { + name = "pulseaudio-0.9.13"; + + src = fetchurl { + url = "http://0pointer.de/lennart/projects/pulseaudio/${name}.tar.gz"; + sha256 = "0lwd5rcppyvcvy9n2j074k5mydgqszfvw6fnsjlz46gkda9vgydq"; + }; + + buildInputs = [ + pkgconfig gnum4 gdbm libtool glib dbus hal avahi gconf liboil + libsamplerate libsndfile speex + intltool gettext + ]; + + configureFlags = '' + --disable-solaris --disable-jack --disable-bluez --disable-polkit + ''; + + meta = { + description = "PulseAudio, a sound server for POSIX and Win32 systems"; + + longDescription = '' + PulseAudio is a sound server for POSIX and Win32 systems. A + sound server 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. + ''; + + homepage = http://www.pulseaudio.org/; + + # Note: Practically, the server is under the GPL due to the + # dependency on `libsamplerate'. See `LICENSE' for details. + licenses = "LGPLv2+"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f1f6c25556e4..5a517e53992d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5757,6 +5757,14 @@ let glibc = stdenv.glibc; }; + pulseaudio = import ../servers/pulseaudio { + inherit fetchurl stdenv pkgconfig gnum4 libtool gdbm + dbus hal avahi liboil libsamplerate libsndfile speex + intltool gettext; + inherit (gtkLibs) glib; + gconf = gnome.GConf; + }; + tomcat_connectors = import ../servers/http/apache-modules/tomcat-connectors { inherit fetchurl stdenv apacheHttpd jdk; };