mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
81 lines
1.2 KiB
Nix
81 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, aalib
|
|
, alsaLib
|
|
, ffmpeg
|
|
, flac
|
|
, libGL
|
|
, libGLU
|
|
, libcaca
|
|
, libcdio
|
|
, libmng
|
|
, libmpcdec
|
|
, libpulseaudio
|
|
, libtheora
|
|
, libv4l
|
|
, libvorbis
|
|
, ncurses
|
|
, perl
|
|
, pkg-config
|
|
, speex
|
|
, vcdimager
|
|
, xorg
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xine-lib";
|
|
version = "1.2.11";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/xine/xine-lib-${version}.tar.xz";
|
|
sha256 = "sha256-71GyHRDdoQRfp9cRvZFxz9rwpaKHQjO88W/98o7AcAU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
perl
|
|
];
|
|
buildInputs = [
|
|
aalib
|
|
alsaLib
|
|
ffmpeg
|
|
flac
|
|
libGL
|
|
libGLU
|
|
libcaca
|
|
libcdio
|
|
libmng
|
|
libmpcdec
|
|
libpulseaudio
|
|
libtheora
|
|
libv4l
|
|
libvorbis
|
|
ncurses
|
|
perl
|
|
speex
|
|
vcdimager
|
|
zlib
|
|
] ++ (with xorg; [
|
|
libX11
|
|
libXext
|
|
libXinerama
|
|
libXv
|
|
libxcb
|
|
]);
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
NIX_LDFLAGS = "-lxcb-shm";
|
|
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.xinehq.de/";
|
|
description = "A high-performance, portable and reusable multimedia playback engine";
|
|
license = with licenses; [ gpl2Plus lgpl2Plus ];
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|