1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pulseaudio: 5.0 -> 6.0

This commit is contained in:
William A. Kennington III 2015-03-25 22:08:17 -07:00
parent 5fab3e266e
commit 18e140701b
2 changed files with 5 additions and 9 deletions

View file

@ -9,20 +9,13 @@
assert jackaudioSupport -> jack2 != null;
stdenv.mkDerivation rec {
name = "pulseaudio-5.0";
name = "pulseaudio-6.0";
src = fetchurl {
url = "http://freedesktop.org/software/pulseaudio/releases/${name}.tar.xz";
sha256 = "0fgrr8v7yfh0byhzdv4c87v9lkj8g7gpjm8r9xrbvpa92a5kmhcr";
sha256 = "1xpnfxa0d8pgf6b4qdgnkcvrvdxbbbjd5ync19h0f5hbp3h401mm";
};
patches = [(fetchpatch {
name = "CVE-2014-3970.patch";
url = "http://cgit.freedesktop.org/pulseaudio/pulseaudio/patch/"
+ "?id=26b9d22dd24c17eb118d0205bf7b02b75d435e3c";
sha256 = "13vxp6520djgfrfxkzy5qvabl94sga3yl5pj93xawbkgwzqymdyq";
})];
# Since `libpulse*.la' contain `-lgdbm' and `-lcap', it must be propagated.
propagatedBuildInputs
= [ gdbm ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ];
@ -55,6 +48,7 @@ stdenv.mkDerivation rec {
"--localstatedir=/var"
"--sysconfdir=/etc"
"--with-access-group=audio"
"--with-systemduserunitdir=\${out}/lib/systemd/user"
]
++ stdenv.lib.optional jackaudioSupport "--enable-jack"
++ stdenv.lib.optional stdenv.isDarwin "--with-mac-sysroot=/";

View file

@ -8299,11 +8299,13 @@ let
bluez = null;
avahi = null;
};
pulseaudioFull = pulseaudio.override {
bluez = bluez5;
avahi = avahi;
jackaudioSupport = true;
x11Support = true;
useSystemd = stdenv.isLinux;
};
tomcat_connectors = callPackage ../servers/http/apache-modules/tomcat-connectors { };