libheif: 1.15.2 -> 1.17.6

This commit is contained in:
kashw2 2023-09-12 19:19:16 +10:00 committed by Sophie Tauchert
parent e25a9aa66c
commit 62b6a96351
No known key found for this signature in database
GPG Key ID: 52701DE5F5F51125

View File

@ -1,7 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, cmake
, pkg-config
, dav1d
, rav1e
@ -22,7 +22,7 @@
stdenv.mkDerivation rec {
pname = "libheif";
version = "1.15.2";
version = "1.17.6";
outputs = [ "bin" "out" "dev" "man" ];
@ -30,12 +30,12 @@ stdenv.mkDerivation rec {
owner = "strukturag";
repo = "libheif";
rev = "v${version}";
sha256 = "sha256-VbMBZ17leGezng2FYKgiSq04Se0PT0a3WqjM6xZ3zS4=";
sha256 = "sha256-pp+PjV/pfExLqzFE61mxliOtVAYOePh1+i1pwZxDLAM=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
cmake
];
buildInputs = [
@ -49,8 +49,6 @@ stdenv.mkDerivation rec {
gdk-pixbuf
];
enableParallelBuilding = true;
# Fix installation path for gdk-pixbuf module
PKG_CONFIG_GDK_PIXBUF_2_0_GDK_PIXBUF_MODULEDIR = "${placeholder "out"}/${gdk-pixbuf.moduleDir}";