mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
01d4e2fe33
After making `ffmpeg` point to the latest `ffmpeg_4`, all packages that used `ffmpeg` without requiring a specific version now use ffmpeg_3 explicitly so they shouldn't change.
44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{ stdenv, fetchurl, fetchpatch, pkgconfig, xorg, alsaLib, libGLU, libGL, aalib
|
|
, libvorbis, libtheora, speex, zlib, perl, ffmpeg_3
|
|
, flac, libcaca, libpulseaudio, libmng, libcdio, libv4l, vcdimager
|
|
, libmpcdec
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xine-lib-1.2.9";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/xine/${name}.tar.xz";
|
|
sha256 = "13clir4qxl2zvsvvjd9yv3yrdhsnvcn5s7ambbbn5dzy9604xcrj";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig perl ];
|
|
|
|
buildInputs = [
|
|
xorg.libX11 xorg.libXv xorg.libXinerama xorg.libxcb xorg.libXext
|
|
alsaLib libGLU libGL aalib libvorbis libtheora speex perl ffmpeg_3 flac
|
|
libcaca libpulseaudio libmng libcdio libv4l vcdimager libmpcdec
|
|
];
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "0001-fix-XINE_PLUGIN_PATH-splitting.patch";
|
|
url = "https://sourceforge.net/p/xine/mailman/attachment/32394053-5e27-6558-f0c9-49e0da0bc3cc%40gmx.de/1/";
|
|
sha256 = "0nrsdn7myvjs8fl9rj6k4g1bnv0a84prsscg1q9n49gwn339v5rc";
|
|
})
|
|
];
|
|
|
|
NIX_LDFLAGS = "-lxcb-shm";
|
|
|
|
propagatedBuildInputs = [zlib];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://www.xine-project.org/";
|
|
description = "A high-performance, portable and reusable multimedia playback engine";
|
|
platforms = platforms.linux;
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
|
};
|
|
}
|