libheif: 1.9.1 -> 1.10.0
dav1d and rav1e support through pkg-config has been added. - https://github.com/strukturag/libheif/releases/tag/v1.10.0 - https://github.com/strukturag/libheif/releases/tag/v1.11.0
This commit is contained in:
parent
95e9af5e42
commit
c517afab63
@ -1,9 +1,9 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libde265, x265, libpng,
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, dav1d, rav1e, libde265, x265, libpng,
|
||||||
libjpeg, libaom }:
|
libjpeg, libaom }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "libheif";
|
pname = "libheif";
|
||||||
version = "1.9.1";
|
version = "1.11.0";
|
||||||
|
|
||||||
outputs = [ "bin" "out" "dev" "man" ];
|
outputs = [ "bin" "out" "dev" "man" ];
|
||||||
|
|
||||||
@ -11,21 +11,19 @@ stdenv.mkDerivation rec {
|
|||||||
owner = "strukturag";
|
owner = "strukturag";
|
||||||
repo = "libheif";
|
repo = "libheif";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0hjs1i076jmy4ryj8y2zs293wx53kzg38y8i42cbcsqydvsdp6hz";
|
sha256 = "sha256-xT0sfYPp5atYXnVpP8TYu2TC9/Z/ClyEP1OTSfcw1gw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||||
buildInputs = [ libde265 x265 libpng libjpeg libaom ];
|
buildInputs = [ dav1d rav1e libde265 x265 libpng libjpeg libaom ];
|
||||||
# TODO: enable dav1d and rav1e codecs when libheif can find them via pkg-config
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://www.libheif.org/";
|
homepage = "http://www.libheif.org/";
|
||||||
description = "ISO/IEC 23008-12:2017 HEIF image file format decoder and encoder";
|
description = "ISO/IEC 23008-12:2017 HEIF image file format decoder and encoder";
|
||||||
license = lib.licenses.lgpl3;
|
license = lib.licenses.lgpl3Plus;
|
||||||
platforms = lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
maintainers = with lib.maintainers; [ gebner ];
|
maintainers = with lib.maintainers; [ gebner ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user