mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
xbmc: add pulse support, lame, avahi, libdvdcss
This commit is contained in:
parent
cf019ab91e
commit
16672fc8b1
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, lib, fetchurl, makeWrapper
|
{ stdenv, lib, fetchurl, makeWrapper
|
||||||
, pkgconfig, cmake, gnumake, yasm, python
|
, pkgconfig, cmake, gnumake, yasm, python
|
||||||
, boost
|
, boost, avahi, libdvdcss, lame
|
||||||
, gettext, pcre, yajl, fribidi
|
, gettext, pcre, yajl, fribidi
|
||||||
, openssl, gperf, tinyxml2, taglib, libssh, swig, jre
|
, openssl, gperf, tinyxml2, taglib, libssh, swig, jre
|
||||||
, libX11, xproto, inputproto
|
, libX11, xproto, inputproto
|
||||||
@ -20,7 +20,9 @@
|
|||||||
, libusb ? null, usbSupport ? false
|
, libusb ? null, usbSupport ? false
|
||||||
, samba ? null, sambaSupport ? true
|
, samba ? null, sambaSupport ? true
|
||||||
# TODO: would be nice to have nfsSupport (needs libnfs library)
|
# TODO: would be nice to have nfsSupport (needs libnfs library)
|
||||||
|
# TODO: librtmp
|
||||||
, libvdpau ? null, vdpauSupport ? true
|
, libvdpau ? null, vdpauSupport ? true
|
||||||
|
, pulseaudio ? null, pulseSupport ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert dbusSupport -> dbus_libs != null;
|
assert dbusSupport -> dbus_libs != null;
|
||||||
@ -28,6 +30,7 @@ assert udevSupport -> udev != null;
|
|||||||
assert usbSupport -> libusb != null && ! udevSupport; # libusb won't be used if udev is avaliable
|
assert usbSupport -> libusb != null && ! udevSupport; # libusb won't be used if udev is avaliable
|
||||||
assert sambaSupport -> samba != null;
|
assert sambaSupport -> samba != null;
|
||||||
assert vdpauSupport -> libvdpau != null && ffmpeg.vdpauSupport;
|
assert vdpauSupport -> libvdpau != null && ffmpeg.vdpauSupport;
|
||||||
|
assert pulseSupport -> pulseaudio != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "xbmc-12.1";
|
name = "xbmc-12.1";
|
||||||
@ -53,14 +56,15 @@ stdenv.mkDerivation rec {
|
|||||||
ffmpeg libmpeg2 libsamplerate libmad
|
ffmpeg libmpeg2 libsamplerate libmad
|
||||||
libogg libvorbis flac
|
libogg libvorbis flac
|
||||||
lzo libcdio libmodplug libass
|
lzo libcdio libmodplug libass
|
||||||
sqlite mysql nasm
|
sqlite mysql nasm avahi libdvdcss lame
|
||||||
curl bzip2 zip unzip glxinfo xdpyinfo
|
curl bzip2 zip unzip glxinfo xdpyinfo
|
||||||
]
|
]
|
||||||
++ lib.optional dbusSupport dbus_libs
|
++ lib.optional dbusSupport dbus_libs
|
||||||
++ lib.optional udevSupport udev
|
++ lib.optional udevSupport udev
|
||||||
++ lib.optional usbSupport libusb
|
++ lib.optional usbSupport libusb
|
||||||
++ lib.optional sambaSupport samba
|
++ lib.optional sambaSupport samba
|
||||||
++ lib.optional vdpauSupport libvdpau;
|
++ lib.optional vdpauSupport libvdpau
|
||||||
|
++ lib.optional pulseSupport pulseaudio;
|
||||||
|
|
||||||
dontUseCmakeConfigure = true;
|
dontUseCmakeConfigure = true;
|
||||||
|
|
||||||
@ -69,7 +73,8 @@ stdenv.mkDerivation rec {
|
|||||||
"--disable-webserver"
|
"--disable-webserver"
|
||||||
]
|
]
|
||||||
++ lib.optional (! sambaSupport) "--disable-samba"
|
++ lib.optional (! sambaSupport) "--disable-samba"
|
||||||
++ lib.optional vdpauSupport "--enable-vdpau";
|
++ lib.optional vdpauSupport "--enable-vdpau"
|
||||||
|
++ lib.optional pulseSupport "--enable-pulse";
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
for p in $(ls $out/bin/) ; do
|
for p in $(ls $out/bin/) ; do
|
||||||
|
Loading…
Reference in New Issue
Block a user