ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
34 lines
966 B
Nix
34 lines
966 B
Nix
{ stdenv, fetchurl, pkgconfig, xorg, alsaLib, mesa, aalib
|
|
, libvorbis, libtheora, speex, zlib, libdvdcss, perl, ffmpeg
|
|
, flac, libcaca, pulseaudio, libmng, libcdio, libv4l, vcdimager
|
|
, libmpcdec
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xine-lib-1.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/xine/${name}.tar.xz";
|
|
sha256 = "1mjk686h1qzqj51h4xs4xvagfgnnhm8czbzzjvr5w034pr8n8rg1";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig perl ];
|
|
|
|
buildInputs = [
|
|
xorg.libX11 xorg.libXv xorg.libXinerama xorg.libxcb xorg.libXext
|
|
alsaLib mesa aalib libvorbis libtheora speex perl ffmpeg flac
|
|
libcaca pulseaudio libmng libcdio libv4l vcdimager libmpcdec
|
|
];
|
|
|
|
NIX_LDFLAGS = "-rpath ${libdvdcss}/lib -L${libdvdcss}/lib -ldvdcss";
|
|
|
|
propagatedBuildInputs = [zlib];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = http://www.xine-project.org/;
|
|
description = "A high-performance, portable and reusable multimedia playback engine";
|
|
};
|
|
}
|