Author: eelco
Date: Thu Jul  7 17:24:31 2011
New Revision: 27629
URL: https://svn.nixos.org/websvn/nix/?rev=27629&sc=1

Log:
* Pulseaudio: disable the dependencies on GTK+, GConf and X11.  It's
  not clear what they're good for, and we don't want other packages
  depending on GTK+ or Gnome if it's not necessary.  Also, updated to
  0.9.23.

Modified:
   nixpkgs/branches/kde-4.7/pkgs/servers/pulseaudio/default.nix

Modified: nixpkgs/branches/kde-4.7/pkgs/servers/pulseaudio/default.nix
==============================================================================
--- nixpkgs/branches/kde-4.7/pkgs/servers/pulseaudio/default.nix        Thu Jul 
 7 17:23:05 2011        (r27628)
+++ nixpkgs/branches/kde-4.7/pkgs/servers/pulseaudio/default.nix        Thu Jul 
 7 17:24:31 2011        (r27629)
@@ -1,25 +1,23 @@
 { stdenv, fetchurl, pkgconfig, gnum4, gdbm, libtool, glib, dbus, avahi
-, gconf, liboil, gtk, libX11, libICE, libSM, libXtst, libXi, intltool, gettext
-, libcap, alsaLib, libsamplerate, libsndfile, speex, bluez, udev
-, ...}:
+, gconf, gtk, libX11, libICE, libSM, libXtst, libXi, intltool, gettext
+, alsaLib, libsamplerate, libsndfile, speex, bluez, udev }:
 
 stdenv.mkDerivation rec {
-  name = "pulseaudio-0.9.21";
+  name = "pulseaudio-0.9.23";
 
   src = fetchurl {
-    url = "http://0pointer.de/lennart/projects/pulseaudio/${name}.tar.gz";;
+    url = "http://freedesktop.org/software/pulseaudio/releases/${name}.tar.gz";;
     sha256 = "0m72rrbgy9qncwhqsq9q35niicy6i06sk3g5i8w9bvkhmib27qll";
   };
 
   # Since `libpulse*.la' contain `-lgdbm', it must be propagated.
   propagatedBuildInputs = [ gdbm ];
 
-  buildInputs = [
-    pkgconfig gnum4 libtool glib dbus avahi gconf liboil
-    libsamplerate libsndfile speex alsaLib libcap
-    gtk libX11 libICE libSM libXtst libXi
-    intltool gettext bluez udev
-  ];
+  buildInputs =
+    [ pkgconfig gnum4 libtool intltool glib dbus avahi
+      libsamplerate libsndfile speex alsaLib bluez udev
+      #gtk gconf libX11 libICE libSM libXtst libXi
+    ];
 
   preConfigure = ''
     # Change the `padsp' script so that it contains the full path to
@@ -37,6 +35,8 @@
     --disable-oss-output --disable-oss-wrapper
   '';
 
+  enableParallelBuilding = true;
+
   meta = {
     description = "PulseAudio, a sound server for POSIX and Win32 systems";
 
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to