openh264: 2.4.1 -> 2.5.0

Changes: https://github.com/cisco/openh264/releases/tag/v2.5.0
This commit is contained in:
Sergei Trofimovich
2024-11-17 07:23:31 +00:00
parent 0a14706530
commit 583c2c58e9
+2 -13
View File
@@ -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 = [