2015-09-15 11:26:18 +02:00
|
|
|
{stdenv, fetchurl, pkgconfig, xorg, libpng, xineLib, readline, ncurses, curl
|
2012-07-02 23:01:00 +02:00
|
|
|
, lirc, shared_mime_info, libjpeg }:
|
2009-04-09 17:27:48 +02:00
|
|
|
|
2012-01-09 11:25:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-16 18:38:21 +01:00
|
|
|
name = "xine-ui-0.99.9";
|
2009-04-09 17:27:48 +02:00
|
|
|
|
2004-12-11 00:16:23 +01:00
|
|
|
src = fetchurl {
|
2012-01-09 11:25:56 +01:00
|
|
|
url = "mirror://sourceforge/xine/${name}.tar.xz";
|
2015-03-16 18:38:21 +01:00
|
|
|
sha256 = "18liwmkbj75xs9bipw3vr67a7cwmdfcp04v5lph7nsjlkwhq1lcd";
|
2004-12-11 00:16:23 +01:00
|
|
|
};
|
2009-04-09 17:27:48 +02:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig shared_mime_info ];
|
2012-01-09 11:25:56 +01:00
|
|
|
|
2009-04-09 17:27:48 +02:00
|
|
|
buildInputs =
|
2012-07-02 23:01:00 +02:00
|
|
|
[ xineLib libpng readline ncurses curl lirc libjpeg
|
2015-09-15 11:26:18 +02:00
|
|
|
xorg.xlibsWrapper xorg.libXext xorg.libXv xorg.libXxf86vm xorg.libXtst xorg.inputproto
|
|
|
|
xorg.libXinerama xorg.libXi xorg.libXft
|
2009-08-11 22:47:33 +02:00
|
|
|
];
|
2009-04-09 17:27:48 +02:00
|
|
|
|
2012-01-09 11:25:56 +01:00
|
|
|
patchPhase = ''sed -e '/curl\/types\.h/d' -i src/xitk/download.c'';
|
2011-11-08 12:18:24 +01:00
|
|
|
|
2016-04-16 19:46:17 +02:00
|
|
|
configureFlags = "--with-readline=${readline.dev}";
|
2009-04-09 17:27:48 +02:00
|
|
|
|
2012-01-09 11:25:56 +01:00
|
|
|
LIRC_CFLAGS="-I${lirc}/include";
|
|
|
|
LIRC_LIBS="-L ${lirc}/lib -llirc_client";
|
|
|
|
#NIX_LDFLAGS = "-lXext -lgcc_s";
|
2006-10-12 12:53:16 +02:00
|
|
|
|
2009-08-11 22:47:33 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.xine-project.org/;
|
2006-10-12 12:53:16 +02:00
|
|
|
description = "Xlib-based interface to Xine, a video player";
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2006-10-12 12:53:16 +02:00
|
|
|
};
|
2004-12-11 00:16:23 +01:00
|
|
|
}
|