libtheora: Refactor

This commit is contained in:
William A. Kennington III 2015-05-20 00:26:45 -07:00
parent d220ea72e5
commit 3b79ea5ce4

View File

@ -1,14 +1,14 @@
{stdenv, fetchurl, libogg, libvorbis, tremor, autoconf, automake, libtool, pkgconfig}: {stdenv, fetchurl, libogg, libvorbis, tremor, autoconf, automake, libtool, pkgconfig}:
stdenv.mkDerivation ({ stdenv.mkDerivation rec {
name = "libtheora-1.1.1"; name = "libtheora-1.1.1";
src = fetchurl { src = fetchurl {
url = http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.gz; url = "http://downloads.xiph.org/releases/theora/${name}.tar.gz";
sha256 = "0swiaj8987n995rc7hw0asvpwhhzpjiws8kr3s6r44bqqib2k5a0"; sha256 = "0swiaj8987n995rc7hw0asvpwhhzpjiws8kr3s6r44bqqib2k5a0";
}; };
buildInputs = [pkgconfig]; nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ libogg libvorbis ]; propagatedBuildInputs = [ libogg libvorbis ];
# GCC's -fforce-addr flag is not supported by clang # GCC's -fforce-addr flag is not supported by clang
@ -17,23 +17,11 @@ stdenv.mkDerivation ({
substituteInPlace configure --replace "-fforce-addr" "" substituteInPlace configure --replace "-fforce-addr" ""
''; '';
crossAttrs = {
propagatedBuildInputs = [libogg.crossDrv tremor.crossDrv];
configureFlags = "--disable-examples";
};
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.theora.org/; homepage = http://www.theora.org/;
description = "Library for Theora, a free and open video compression format"; description = "Library for Theora, a free and open video compression format";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.spwhitt ]; maintainers = with maintainers; [ spwhitt wkennington ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }
# It has an old config.guess that doesn't know the mips64el.
// stdenv.lib.optionalAttrs (stdenv.system == "mips64el-linux")
{
propagatedBuildInputs = [libogg libvorbis autoconf automake libtool];
preConfigure = "rm config.guess; sh autogen.sh";
})