2015-02-03 20:19:38 +00:00
|
|
|
{stdenv, fetchurl, libogg, libvorbis, tremor, autoconf, automake, libtool, pkgconfig}:
|
2005-02-16 16:18:43 +00:00
|
|
|
|
2012-06-14 19:54:19 +00:00
|
|
|
stdenv.mkDerivation ({
|
2011-04-23 21:58:30 +00:00
|
|
|
name = "libtheora-1.1.1";
|
2005-02-16 16:18:43 +00:00
|
|
|
src = fetchurl {
|
2011-04-23 21:58:30 +00:00
|
|
|
url = http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.gz;
|
|
|
|
sha256 = "0swiaj8987n995rc7hw0asvpwhhzpjiws8kr3s6r44bqqib2k5a0";
|
2005-02-16 16:18:43 +00:00
|
|
|
};
|
2011-04-23 21:58:30 +00:00
|
|
|
|
2015-02-03 20:19:38 +00:00
|
|
|
buildInputs = [pkgconfig];
|
|
|
|
|
2005-02-16 16:18:43 +00:00
|
|
|
propagatedBuildInputs = [libogg libvorbis];
|
2011-04-23 21:58:30 +00:00
|
|
|
|
2015-02-03 20:19:38 +00:00
|
|
|
# GCC's -fforce-addr flag is not supported by clang
|
|
|
|
# It's just an optimization, so it's safe to simply remove it
|
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace configure --replace "-fforce-addr" ""
|
|
|
|
'';
|
|
|
|
|
2011-04-23 21:58:30 +00:00
|
|
|
crossAttrs = {
|
2012-12-28 18:08:19 +00:00
|
|
|
propagatedBuildInputs = [libogg.crossDrv tremor.crossDrv];
|
2011-04-23 21:58:30 +00:00
|
|
|
configureFlags = "--disable-examples";
|
|
|
|
};
|
2005-02-16 16:18:43 +00:00
|
|
|
}
|
2012-06-14 19:54:19 +00:00
|
|
|
|
|
|
|
# It has an old config.guess that doesn't know the mips64el.
|
2012-06-14 21:28:41 +00:00
|
|
|
// stdenv.lib.optionalAttrs (stdenv.system == "mips64el-linux")
|
2012-06-14 19:54:19 +00:00
|
|
|
{
|
|
|
|
propagatedBuildInputs = [libogg libvorbis autoconf automake libtool];
|
|
|
|
preConfigure = "rm config.guess; sh autogen.sh";
|
2012-06-14 21:28:41 +00:00
|
|
|
})
|