2022-11-02 22:02:43 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2023-04-29 16:46:19 +00:00
|
|
|
, fetchpatch
|
2022-11-02 22:02:43 +00:00
|
|
|
, autoreconfHook
|
|
|
|
, pkg-config
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
, callPackage
|
|
|
|
|
2022-11-02 22:02:43 +00:00
|
|
|
# for passthru.tests
|
|
|
|
, imagemagick
|
|
|
|
, libheif
|
|
|
|
, imlib2Full
|
|
|
|
, gst_all_1
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: rec {
|
2023-03-04 12:14:45 +00:00
|
|
|
version = "1.0.11";
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "libde265";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "strukturag";
|
|
|
|
repo = "libde265";
|
|
|
|
rev = "v${version}";
|
2023-03-04 12:14:45 +00:00
|
|
|
sha256 = "sha256-0aRUh5h49fnjBjy42A5fWYHnhnQ4CFoeSIXZilZewW8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2023-27102.patch";
|
|
|
|
url = "https://github.com/strukturag/libde265/commit/0b1752abff97cb542941d317a0d18aa50cb199b1.patch";
|
|
|
|
sha256 = "sha256-q0NKuk2r5RQT9MJpRO3CTPj6VqYRBnffs9yZ+GM+lNc=";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2023-27103.patch";
|
|
|
|
url = "https://github.com/strukturag/libde265/commit/d6bf73e765b7a23627bfd7a8645c143fd9097995.patch";
|
|
|
|
sha256 = "sha256-vxciVzSuVCVDpdz+TKg2tMWp2ArubYji5GLaR9VP4F0=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2022-11-02 22:02:43 +00:00
|
|
|
passthru.tests = {
|
2023-02-02 18:25:31 +00:00
|
|
|
inherit imagemagick libheif imlib2Full;
|
2022-11-02 22:02:43 +00:00
|
|
|
inherit (gst_all_1) gst-plugins-bad;
|
2023-04-29 16:46:19 +00:00
|
|
|
|
|
|
|
test-corpus-decode = callPackage ./test-corpus-decode.nix {
|
|
|
|
libde265 = finalAttrs.finalPackage;
|
|
|
|
};
|
2022-11-02 22:02:43 +00:00
|
|
|
};
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/strukturag/libde265";
|
|
|
|
description = "Open h.265 video codec implementation";
|
2021-02-05 17:12:51 +00:00
|
|
|
license = lib.licenses.lgpl3;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = with lib.maintainers; [ gebner ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2023-04-29 16:46:19 +00:00
|
|
|
})
|