2018-07-20 17:44:44 -07:00
|
|
|
{stdenv, fetchurl, libogg, libvorbis, pkgconfig}:
|
2005-02-16 08:18:43 -08:00
|
|
|
|
2015-05-20 00:26:45 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2011-04-23 14:58:30 -07:00
|
|
|
name = "libtheora-1.1.1";
|
2015-05-20 00:26:45 -07:00
|
|
|
|
2005-02-16 08:18:43 -08:00
|
|
|
src = fetchurl {
|
2015-05-20 00:26:45 -07:00
|
|
|
url = "http://downloads.xiph.org/releases/theora/${name}.tar.gz";
|
2011-04-23 14:58:30 -07:00
|
|
|
sha256 = "0swiaj8987n995rc7hw0asvpwhhzpjiws8kr3s6r44bqqib2k5a0";
|
2005-02-16 08:18:43 -08:00
|
|
|
};
|
2011-04-23 14:58:30 -07:00
|
|
|
|
2016-09-01 02:07:23 -07:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
|
|
outputDoc = "devdoc";
|
2015-10-06 07:58:14 -07:00
|
|
|
|
2015-05-20 00:26:45 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
propagatedBuildInputs = [ libogg libvorbis ];
|
2011-04-23 14:58:30 -07:00
|
|
|
|
2015-02-03 12:19:38 -08: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" ""
|
|
|
|
'';
|
|
|
|
|
2015-02-03 12:36:22 -08:00
|
|
|
meta = with stdenv.lib; {
|
2018-03-24 22:04:25 -07:00
|
|
|
homepage = https://www.theora.org/;
|
2015-02-03 12:36:22 -08:00
|
|
|
description = "Library for Theora, a free and open video compression format";
|
|
|
|
license = licenses.bsd3;
|
2015-05-20 00:26:45 -07:00
|
|
|
maintainers = with maintainers; [ spwhitt wkennington ];
|
2015-02-03 12:36:22 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2005-02-16 08:18:43 -08:00
|
|
|
}
|