From c209577626a62f1e8ab6fcb48d903f736fa9c443 Mon Sep 17 00:00:00 2001 From: amesgen Date: Tue, 10 May 2022 19:52:34 +0200 Subject: [PATCH 1/2] svt-av1: 0.9.1 -> 1.0.0 --- pkgs/tools/video/svt-av1/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/video/svt-av1/default.nix b/pkgs/tools/video/svt-av1/default.nix index 3c45f2608eb..7522bb042ed 100644 --- a/pkgs/tools/video/svt-av1/default.nix +++ b/pkgs/tools/video/svt-av1/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "svt-av1"; - version = "0.9.1"; + version = "1.0.0"; src = fetchFromGitLab { owner = "AOMediaCodec"; repo = "SVT-AV1"; rev = "v${version}"; - sha256 = "sha256-PIr2bCEKj1dXKiGWloZv2v+ed6JdHK3z+p11ugWGzAk="; + sha256 = "sha256-M5ErWB/klVijsF+GysR0b3m180h+O+10weKr1pTh8ow="; }; nativeBuildInputs = [ cmake nasm ]; From 63f82810d1518f0410684e116f8ccba8449a8729 Mon Sep 17 00:00:00 2001 From: amesgen Date: Tue, 10 May 2022 19:52:34 +0200 Subject: [PATCH 2/2] svt-av1: remove BSD-2 from licenses Quoting from the README: > Up to v0.8.7, SVT-AV1 is licensed under the BSD-2-clause license and > the Alliance for Open Media Patent License 1.0. See LICENSE and > PATENTS for details. Starting from v0.9, SVT-AV1 is licensed under > the BSD-3-clause clear license and the Alliance for Open Media > Patent License 1.0. See LICENSE and PATENTS for details. --- pkgs/tools/video/svt-av1/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/tools/video/svt-av1/default.nix b/pkgs/tools/video/svt-av1/default.nix index 7522bb042ed..dc57cf11609 100644 --- a/pkgs/tools/video/svt-av1/default.nix +++ b/pkgs/tools/video/svt-av1/default.nix @@ -27,7 +27,6 @@ stdenv.mkDerivation rec { changelog = "https://gitlab.com/AOMediaCodec/SVT-AV1/-/blob/v${version}/CHANGELOG.md"; license = with licenses; [ aom - bsd2 bsd3 ]; platforms = platforms.unix;