libde265 1.0.11 -> 1.0.12 https://repology.org/project/libde265/versions attrpath: libde265 Checking auto update branch... No auto update branch exists Old version 1.0.11" not present in staging derivation file with contents: { lib , stdenv , fetchFromGitHub , autoreconfHook , pkg-config , callPackage # for passthru.tests , imagemagick , libheif , imlib2Full , gst_all_1 }: stdenv.mkDerivation (finalAttrs: rec { version = "1.0.12"; pname = "libde265"; src = fetchFromGitHub { owner = "strukturag"; repo = "libde265"; rev = "refs/tags/v${version}"; hash = "sha256-pl1r3n4T4FcJ4My/wCE54R2fmTdrlJOvgb2U0MZf1BI="; }; nativeBuildInputs = [ autoreconfHook pkg-config ]; enableParallelBuilding = true; passthru.tests = { inherit imagemagick libheif imlib2Full; inherit (gst_all_1) gst-plugins-bad; test-corpus-decode = callPackage ./test-corpus-decode.nix { libde265 = finalAttrs.finalPackage; }; }; meta = { homepage = "https://github.com/strukturag/libde265"; description = "Open h.265 video codec implementation"; license = lib.licenses.lgpl3; platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ gebner ]; }; })