2021-04-01 18:15:54 +00:00
|
|
|
{lib, stdenv, fetchurl, libogg, libvorbis, pkg-config, autoreconfHook, fetchpatch }:
|
2005-02-16 16:18:43 +00:00
|
|
|
|
2015-05-20 07:26:45 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-06-20 14:15:21 +00:00
|
|
|
pname = "libtheora";
|
|
|
|
version = "1.1.1";
|
2015-05-20 07:26:45 +00:00
|
|
|
|
2005-02-16 16:18:43 +00:00
|
|
|
src = fetchurl {
|
2021-06-20 14:15:21 +00:00
|
|
|
url = "https://downloads.xiph.org/releases/theora/${pname}-${version}.tar.gz";
|
2011-04-23 21:58:30 +00:00
|
|
|
sha256 = "0swiaj8987n995rc7hw0asvpwhhzpjiws8kr3s6r44bqqib2k5a0";
|
2005-02-16 16:18:43 +00:00
|
|
|
};
|
2011-04-23 21:58:30 +00:00
|
|
|
|
2021-04-01 18:15:54 +00:00
|
|
|
patches = [
|
|
|
|
# fix error in autoconf scripts
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/xiph/theora/commit/28cc6dbd9b2a141df94f60993256a5fca368fa54.diff";
|
|
|
|
sha256 = "16jqrq4h1b3krj609vbpzd5845cvkbh3mwmjrcdg35m490p19x9k";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-09-01 09:07:23 +00:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
|
|
outputDoc = "devdoc";
|
2015-10-06 14:58:14 +00:00
|
|
|
|
2021-04-01 18:15:54 +00:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
2015-05-20 07:26:45 +00:00
|
|
|
propagatedBuildInputs = [ libogg libvorbis ];
|
2011-04-23 21:58:30 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.theora.org/";
|
2015-02-03 20:36:22 +00:00
|
|
|
description = "Library for Theora, a free and open video compression format";
|
|
|
|
license = licenses.bsd3;
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ spwhitt ];
|
2015-02-03 20:36:22 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2005-02-16 16:18:43 +00:00
|
|
|
}
|