linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libtheora / default.nix
blob8f0c4d818f4c36e51f8fde5190a5847c275fdad1
1 {lib, stdenv, fetchurl, libogg, libvorbis, pkg-config, autoreconfHook, fetchpatch }:
3 stdenv.mkDerivation rec {
4   name = "libtheora-1.1.1";
6   src = fetchurl {
7     url = "http://downloads.xiph.org/releases/theora/${name}.tar.gz";
8     sha256 = "0swiaj8987n995rc7hw0asvpwhhzpjiws8kr3s6r44bqqib2k5a0";
9   };
11   patches = [
12     # fix error in autoconf scripts
13     (fetchpatch {
14       url = "https://github.com/xiph/theora/commit/28cc6dbd9b2a141df94f60993256a5fca368fa54.diff";
15       sha256 = "16jqrq4h1b3krj609vbpzd5845cvkbh3mwmjrcdg35m490p19x9k";
16     })
17   ];
19   outputs = [ "out" "dev" "devdoc" ];
20   outputDoc = "devdoc";
22   nativeBuildInputs = [ pkg-config autoreconfHook ];
23   propagatedBuildInputs = [ libogg libvorbis ];
25   meta = with lib; {
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;
31   };