libtheora: 1.1.1 -> 1.2.0 (#401928)

Changed files
+4 -10
pkgs
by-name
li
libtheora
+4 -10
pkgs/by-name/li/libtheora/package.nix
···
lib,
stdenv,
fetchurl,
-
fetchpatch,
autoreconfHook,
libogg,
libvorbis,
···
stdenv.mkDerivation (finalAttrs: {
pname = "libtheora";
-
version = "1.1.1";
src = fetchurl {
url = "https://downloads.xiph.org/releases/theora/libtheora-${finalAttrs.version}.tar.gz";
-
hash = "sha256-QJUpVsR4EZKNHnkizaO8H0J+t1aAw8NySckelJBUkWs=";
};
-
patches = [
-
# fix error in autoconf scripts
-
(fetchpatch {
-
url = "https://github.com/xiph/theora/commit/28cc6dbd9b2a141df94f60993256a5fca368fa54.diff";
-
hash = "sha256-M/UULkiklvEay7LyOuCamxWCSvt37QSMzHOsAAnOWJo=";
-
})
-
] ++ lib.optionals stdenv.hostPlatform.isMinGW [ ./mingw-remove-export.patch ];
configureFlags = [ "--disable-examples" ];
···
};
meta = {
description = "Library for Theora, a free and open video compression format";
homepage = "https://www.theora.org/";
license = lib.licenses.bsd3;
···
lib,
stdenv,
fetchurl,
autoreconfHook,
libogg,
libvorbis,
···
stdenv.mkDerivation (finalAttrs: {
pname = "libtheora";
+
version = "1.2.0";
src = fetchurl {
url = "https://downloads.xiph.org/releases/theora/libtheora-${finalAttrs.version}.tar.gz";
+
hash = "sha256-J5MnM5kDtUTCipKurafQ3P0Dl7WcLzaMxpisVvUVkG4=";
};
+
patches = lib.optionals stdenv.hostPlatform.isMinGW [ ./mingw-remove-export.patch ];
configureFlags = [ "--disable-examples" ];
···
};
meta = {
+
changelog = "https://gitlab.xiph.org/xiph/theora/-/releases/v${finalAttrs.version}";
description = "Library for Theora, a free and open video compression format";
homepage = "https://www.theora.org/";
license = lib.licenses.bsd3;