2015-06-04 10:57:12 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, intltool, autoreconfHook
|
|
|
|
, json_c, libsndfile
|
|
|
|
, xlibs, libcap, alsaLib, glib
|
|
|
|
, avahi, libjack2, libasyncns, lirc, dbus
|
|
|
|
, sbc, bluez5, udev, openssl, fftwFloat
|
|
|
|
, speexdsp, systemd, webrtc-audio-processing, gconf ? null
|
2008-12-19 14:56:37 +00:00
|
|
|
|
2015-04-26 04:27:41 +00:00
|
|
|
# Database selection
|
|
|
|
, tdb ? null, gdbm ? null
|
|
|
|
|
2015-06-04 10:57:12 +00:00
|
|
|
, x11Support ? false
|
|
|
|
|
|
|
|
, useSystemd ? true
|
|
|
|
|
|
|
|
, # Whether to support the JACK sound system as a backend.
|
|
|
|
jackaudioSupport ? false
|
|
|
|
|
|
|
|
, # Whether to build the OSS wrapper ("padsp").
|
|
|
|
ossWrapper ? true
|
|
|
|
|
|
|
|
, airtunesSupport ? false
|
|
|
|
|
|
|
|
, gconfSupport ? false
|
|
|
|
|
|
|
|
, bluetoothSupport ? false
|
|
|
|
|
|
|
|
, remoteControlSupport ? false
|
|
|
|
|
|
|
|
, zeroconfSupport ? false
|
|
|
|
|
|
|
|
, # Whether to build only the library.
|
|
|
|
libOnly ? false
|
2015-04-26 04:27:41 +00:00
|
|
|
}:
|
|
|
|
|
2008-12-19 14:56:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-06-04 10:57:12 +00:00
|
|
|
name = "${if libOnly then "lib" else ""}pulseaudio-${version}";
|
2015-04-26 04:27:41 +00:00
|
|
|
version = "6.0";
|
2008-12-19 14:56:37 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-26 04:27:41 +00:00
|
|
|
url = "http://freedesktop.org/software/pulseaudio/releases/pulseaudio-${version}.tar.xz";
|
2015-03-26 05:08:17 +00:00
|
|
|
sha256 = "1xpnfxa0d8pgf6b4qdgnkcvrvdxbbbjd5ync19h0f5hbp3h401mm";
|
2008-12-19 14:56:37 +00:00
|
|
|
};
|
|
|
|
|
2015-04-26 19:09:52 +00:00
|
|
|
patches = [ ./caps-fix.patch ];
|
|
|
|
|
2015-06-04 10:57:12 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool autoreconfHook ];
|
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ json_c libsndfile speexdsp fftwFloat ]
|
|
|
|
++ lib.optionals stdenv.isLinux [ libcap glib dbus.libs ]
|
|
|
|
++ lib.optionals (!libOnly) (
|
|
|
|
[ libasyncns webrtc-audio-processing ]
|
|
|
|
++ lib.optional jackaudioSupport libjack2
|
|
|
|
++ lib.optionals x11Support [ xlibs.xlibs xlibs.libXtst xlibs.libXi ]
|
|
|
|
++ lib.optional useSystemd systemd
|
|
|
|
++ lib.optionals stdenv.isLinux [ alsaLib udev ]
|
|
|
|
++ lib.optional airtunesSupport openssl
|
|
|
|
++ lib.optional gconfSupport gconf
|
|
|
|
++ lib.optionals bluetoothSupport [ bluez5 sbc ]
|
|
|
|
++ lib.optional remoteControlSupport lirc
|
|
|
|
++ lib.optional zeroconfSupport avahi
|
|
|
|
);
|
2008-12-19 14:56:37 +00:00
|
|
|
|
2009-01-19 20:22:54 +00:00
|
|
|
preConfigure = ''
|
2015-04-26 19:09:52 +00:00
|
|
|
# Performs and autoreconf
|
|
|
|
export NOCONFIGURE="yes"
|
|
|
|
patchShebangs bootstrap.sh
|
|
|
|
./bootstrap.sh
|
|
|
|
|
2009-12-13 20:19:19 +00:00
|
|
|
# Move the udev rules under $(prefix).
|
|
|
|
sed -i "src/Makefile.in" \
|
|
|
|
-e "s|udevrulesdir[[:blank:]]*=.*$|udevrulesdir = $out/lib/udev/rules.d|g"
|
2011-11-06 20:03:07 +00:00
|
|
|
|
2015-06-04 10:57:12 +00:00
|
|
|
# don't install proximity-helper as root and setuid
|
|
|
|
sed -i "src/Makefile.in" \
|
|
|
|
-e "s|chown root|true |" \
|
|
|
|
-e "s|chmod r+s |true |"
|
2009-01-19 20:22:54 +00:00
|
|
|
'';
|
|
|
|
|
2015-06-04 10:57:12 +00:00
|
|
|
configureFlags =
|
|
|
|
[ "--disable-solaris"
|
|
|
|
"--disable-jack"
|
|
|
|
"--disable-oss-output"
|
|
|
|
] ++ lib.optional (!ossWrapper) "--disable-oss-wrapper" ++
|
|
|
|
[ "--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--with-access-group=audio"
|
|
|
|
]
|
|
|
|
++ lib.optional (jackaudioSupport && !libOnly) "--enable-jack"
|
|
|
|
++ lib.optional stdenv.isDarwin "--with-mac-sysroot=/"
|
|
|
|
++ lib.optional (stdenv.isLinux && useSystemd) "--with-systemduserunitdir=\${out}/lib/systemd/user";
|
2011-07-26 15:25:21 +00:00
|
|
|
|
2011-07-07 17:24:31 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-09-06 01:47:49 +00:00
|
|
|
# not sure what the best practices are here -- can't seem to find a way
|
|
|
|
# for the compiler to bring in stdlib and stdio (etc.) properly
|
|
|
|
# the alternative is to copy the files from /usr/include to src, but there are
|
|
|
|
# probably a large number of files that would need to be copied (I stopped
|
|
|
|
# after the seventh)
|
2015-06-04 10:57:12 +00:00
|
|
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I/usr/include";
|
2013-09-06 01:47:49 +00:00
|
|
|
|
2015-06-04 10:57:12 +00:00
|
|
|
installFlags =
|
|
|
|
[ "sysconfdir=$(out)/etc"
|
|
|
|
"pulseconfdir=$(out)/etc/pulse"
|
|
|
|
];
|
2015-04-26 04:27:41 +00:00
|
|
|
|
2015-06-04 10:57:12 +00:00
|
|
|
postInstall = lib.optionalString libOnly ''
|
2015-04-26 04:27:41 +00:00
|
|
|
rm -rf $out/{bin,share,etc,lib/{pulse-*,systemd}}
|
|
|
|
'';
|
2013-09-06 01:47:49 +00:00
|
|
|
|
2015-06-04 10:57:12 +00:00
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Sound server for POSIX and Win32 systems";
|
2013-09-06 01:47:49 +00:00
|
|
|
homepage = http://www.pulseaudio.org/;
|
2015-06-04 10:57:12 +00:00
|
|
|
licenses = lib.licenses.lgpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [ lovek323 wkennington ];
|
|
|
|
platforms = lib.platforms.unix;
|
2008-12-19 14:56:37 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|