51f6aec764
dependencies with it. (I should never link ld.so with a NIX_LDFLAGS -rpath forced) I made vim, scummvm cross-build. I added prboom (that cross-builds). Mplayer and elinks don't cross-build fine still, but are on the way. The mplayer fails to build in a weird way; nix does not show either a gcc error message or even the 'make' error message. svn path=/nixpkgs/branches/stdenv-updates/; revision=23131
109 lines
3.6 KiB
Nix
109 lines
3.6 KiB
Nix
{ alsaSupport ? false, xvSupport ? true, theoraSupport ? false, cacaSupport ? false
|
|
, xineramaSupport ? false, randrSupport ? false, dvdnavSupport ? true
|
|
, stdenv, fetchurl, x11, freetype, fontconfig, zlib
|
|
, alsa ? null, libXv ? null, libtheora ? null, libcaca ? null
|
|
, libXinerama ? null, libXrandr ? null, libdvdnav ? null
|
|
, cdparanoia ? null, cddaSupport ? true
|
|
, amrnb ? null, amrwb ? null, amrSupport ? false
|
|
, x11Support ? true, libX11 ? null
|
|
, jackaudioSupport ? false, jackaudio ? null
|
|
, x264Support ? false, x264 ? null
|
|
, xvidSupport ? false, xvidcore ? null
|
|
, lameSupport ? true, lame ? null
|
|
, mesa, pkgconfig, unzip, yasm
|
|
}:
|
|
|
|
assert alsaSupport -> alsa != null;
|
|
assert x11Support -> libX11 != null;
|
|
assert xvSupport -> (libXv != null && x11Support);
|
|
assert theoraSupport -> libtheora != null;
|
|
assert cacaSupport -> libcaca != null;
|
|
assert xineramaSupport -> (libXinerama != null && x11Support);
|
|
assert randrSupport -> (libXrandr != null && x11Support);
|
|
assert dvdnavSupport -> libdvdnav != null;
|
|
assert cddaSupport -> cdparanoia != null;
|
|
assert jackaudioSupport -> jackaudio != null;
|
|
assert amrSupport -> (amrnb != null && amrwb != null);
|
|
|
|
let
|
|
|
|
codecs = stdenv.mkDerivation {
|
|
name = "MPlayer-codecs-essential-20071007";
|
|
|
|
src = fetchurl {
|
|
url = http://www2.mplayerhq.hu/MPlayer/releases/codecs/essential-20071007.tar.bz2;
|
|
sha256 = "18vls12n12rjw0mzw4pkp9vpcfmd1c21rzha19d7zil4hn7fs2ic";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -prv * $out
|
|
'';
|
|
|
|
meta = {
|
|
license = "unfree";
|
|
};
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "MPlayer-1.0-pre-rc4-20100506";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gentoo/distfiles/mplayer-1.0_rc4_p20100506.tar.bz2;
|
|
sha256 = "0rhs0mv216iir8cz13xdq0rs88lc48ciiyn0wqzxjrnjb17yajy6";
|
|
};
|
|
|
|
buildInputs =
|
|
[ freetype zlib pkgconfig ]
|
|
++ stdenv.lib.optional x11Support [ libX11 mesa ]
|
|
++ stdenv.lib.optional alsaSupport alsa
|
|
++ stdenv.lib.optional xvSupport libXv
|
|
++ stdenv.lib.optional theoraSupport libtheora
|
|
++ stdenv.lib.optional cacaSupport libcaca
|
|
++ stdenv.lib.optional xineramaSupport libXinerama
|
|
++ stdenv.lib.optional randrSupport libXrandr
|
|
++ stdenv.lib.optionals dvdnavSupport [ libdvdnav libdvdnav.libdvdread ]
|
|
++ stdenv.lib.optional cddaSupport cdparanoia
|
|
++ stdenv.lib.optional jackaudioSupport jackaudio
|
|
++ stdenv.lib.optionals amrSupport [ amrnb amrwb ]
|
|
++ stdenv.lib.optional x264Support x264
|
|
++ stdenv.lib.optional xvidSupport xvidcore
|
|
++ stdenv.lib.optional lameSupport lame;
|
|
|
|
buildNativeInputs = [ yasm ];
|
|
|
|
configureFlags = ''
|
|
${if cacaSupport then "--enable-caca" else "--disable-caca"}
|
|
${if dvdnavSupport then "--enable-dvdnav --enable-dvdread --disable-dvdread-internal" else ""}
|
|
${if x264Support then "--enable-x264 --extra-libs=-lx264" else ""}
|
|
--codecsdir=${codecs}
|
|
--enable-runtime-cpudetection
|
|
${if x11Support then "--enable-x11" else ""}
|
|
--disable-xanim
|
|
--disable-ivtv
|
|
'';
|
|
|
|
NIX_LDFLAGS = if x11Support then "-lX11 -lXext" else "";
|
|
|
|
crossAttrs = {
|
|
preConfigure = ''
|
|
configureFlags="`echo $configureFlags |
|
|
sed -e 's/--build[^ ]\+//' \
|
|
-e 's/--host[^ ]\+//' \
|
|
-e 's/--codecsdir[^ ]\+//' \
|
|
-e 's/--enable-runtime-cpudetection//' `"
|
|
configureFlags="$configureFlags --target=${stdenv.cross.arch}-linux
|
|
--cc=$crossConfig-gcc --as=$crossConfig-as"
|
|
'';
|
|
};
|
|
|
|
meta = {
|
|
description = "A movie player that supports many video formats";
|
|
homepage = "http://mplayerhq.hu";
|
|
license = "GPL";
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
};
|
|
}
|