From 583c2c58e9833e648fb17c1a98fdd379b243c9d9 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 17 Nov 2024 07:22:26 +0000 Subject: [PATCH] openh264: 2.4.1 -> 2.5.0 Changes: https://github.com/cisco/openh264/releases/tag/v2.5.0 --- pkgs/by-name/op/openh264/package.nix | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/pkgs/by-name/op/openh264/package.nix b/pkgs/by-name/op/openh264/package.nix index 12048b593dd0..18766f628c12 100644 --- a/pkgs/by-name/op/openh264/package.nix +++ b/pkgs/by-name/op/openh264/package.nix @@ -1,6 +1,5 @@ { lib , fetchFromGitHub -, fetchpatch2 , gtest , meson , nasm @@ -12,25 +11,15 @@ stdenv.mkDerivation (finalAttrs: { pname = "openh264"; - version = "2.4.1"; + version = "2.5.0"; src = fetchFromGitHub { owner = "cisco"; repo = "openh264"; rev = "v${finalAttrs.version}"; - hash = "sha256-ai7lcGcQQqpsLGSwHkSs7YAoEfGCIbxdClO6JpGA+MI="; + hash = "sha256-K8p94P4XO6bUWCJuT6jR5Kmz3lamNDyclGWgsV6Lf9I="; }; - patches = [ - # build: fix build with meson on riscv64 - # https://github.com/cisco/openh264/pull/3773 - (fetchpatch2 { - name = "openh264-riscv64.patch"; - url = "https://github.com/cisco/openh264/commit/cea886eda8fae7ba42c4819e6388ce8fc633ebf6.patch"; - hash = "sha256-ncXuGgogXA7JcCOjGk+kBprmOErFohrYjYzZYzAbbDQ="; - }) - ]; - outputs = [ "out" "dev" ]; nativeBuildInputs = [