1 {lib, stdenv, fetchurl, libogg, libvorbis, pkg-config, autoreconfHook, fetchpatch }:
3 stdenv.mkDerivation rec {
4 name = "libtheora-1.1.1";
7 url = "http://downloads.xiph.org/releases/theora/${name}.tar.gz";
8 sha256 = "0swiaj8987n995rc7hw0asvpwhhzpjiws8kr3s6r44bqqib2k5a0";
12 # fix error in autoconf scripts
14 url = "https://github.com/xiph/theora/commit/28cc6dbd9b2a141df94f60993256a5fca368fa54.diff";
15 sha256 = "16jqrq4h1b3krj609vbpzd5845cvkbh3mwmjrcdg35m490p19x9k";
19 outputs = [ "out" "dev" "devdoc" ];
22 nativeBuildInputs = [ pkg-config autoreconfHook ];
23 propagatedBuildInputs = [ libogg libvorbis ];
26 homepage = "https://www.theora.org/";
27 description = "Library for Theora, a free and open video compression format";
28 license = licenses.bsd3;
29 maintainers = with maintainers; [ spwhitt ];
30 platforms = platforms.unix;