xbmc: 12.2 -> 12.3

This commit is contained in:
Domen Kožar 2013-12-29 11:15:13 +01:00
parent e9ec56a596
commit 5603e611a7
3 changed files with 9 additions and 6 deletions

View File

@ -1,7 +1,7 @@
{ stdenv, lib, fetchurl, makeWrapper { stdenv, lib, fetchurl, makeWrapper
, pkgconfig, cmake, gnumake, yasm, pythonFull , pkgconfig, cmake, gnumake, yasm, pythonFull
, boost, avahi, libdvdcss, lame , boost, avahi, libdvdcss, lame, autoreconfHook
, gettext, pcre, yajl, fribidi , gettext, pcre, yajl, fribidi, which
, openssl, gperf, tinyxml2, taglib, libssh, swig, jre , openssl, gperf, tinyxml2, taglib, libssh, swig, jre
, libX11, xproto, inputproto , libX11, xproto, inputproto
, libXt, libXmu, libXext, xextproto , libXt, libXmu, libXext, xextproto
@ -34,20 +34,20 @@ assert vdpauSupport -> libvdpau != null && ffmpeg.vdpauSupport;
assert pulseSupport -> pulseaudio != null; assert pulseSupport -> pulseaudio != null;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "xbmc-12.2"; name = "xbmc-12.3";
src = fetchurl { src = fetchurl {
url = "http://mirrors.xbmc.org/releases/source/${name}.tar.gz"; url = "http://mirrors.xbmc.org/releases/source/${name}.tar.gz";
sha256 = "077apkq9sx6wlwkwmiz63w5dcqbbrbjbn6qk9fj2fgaizhs0ccxj"; sha256 = "0wyy9rsl11px4mh0fyq75n29905ldiqp8yraz6jxxvrls1hcj59y";
}; };
buildInputs = [ buildInputs = [
makeWrapper makeWrapper
pkgconfig cmake gnumake yasm pythonFull pkgconfig cmake gnumake yasm pythonFull
boost libmicrohttpd boost libmicrohttpd autoreconfHook
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 which
libXt libXmu libXext xextproto libXt libXmu libXext xextproto
libXinerama libXrandr randrproto libXinerama libXrandr randrproto
libXtst libXfixes fixesproto libXtst libXfixes fixesproto
@ -72,6 +72,7 @@ stdenv.mkDerivation rec {
preConfigure = '' preConfigure = ''
substituteInPlace xbmc/linux/LinuxTimezone.cpp \ substituteInPlace xbmc/linux/LinuxTimezone.cpp \
--replace 'usr/share/zoneinfo' 'etc/zoneinfo' --replace 'usr/share/zoneinfo' 'etc/zoneinfo'
./bootstrap
''; '';
configureFlags = [ configureFlags = [

View File

@ -11,5 +11,6 @@ stdenv.mkDerivation rec {
meta = { meta = {
homepage = http://www.nasm.us/; homepage = http://www.nasm.us/;
description = "An 80x86 and x86-64 assembler designed for portability and modularity"; description = "An 80x86 and x86-64 assembler designed for portability and modularity";
platforms = stdenv.lib.platforms.linux;
}; };
} }

View File

@ -12,5 +12,6 @@ stdenv.mkDerivation rec {
homepage = http://www.tortall.net/projects/yasm/; homepage = http://www.tortall.net/projects/yasm/;
description = "Complete rewrite of the NASM assembler"; description = "Complete rewrite of the NASM assembler";
license = "BSD"; license = "BSD";
platforms = stdenv.lib.platforms.linux;
}; };
} }