libheif: init at 1.3.2

This commit is contained in:
Gabriel Ebner 2018-07-01 11:05:44 +02:00
parent 47216a62d3
commit 055a355c0b
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, autoreconfHook, libde265, x265, pkgconfig, libpng, libjpeg }:
stdenv.mkDerivation rec {
version = "1.3.2";
name = "libheif-${version}";
src = fetchFromGitHub {
owner = "strukturag";
repo = "libheif";
rev = "v${version}";
sha256 = "0hk8mzig2kp5f94j4jwqxzjrm7ffk16ffvxl92rf0afsh6vgnz7w";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libde265 x265 libpng libjpeg ];
propagatedBuildInputs = [ x265 ];
meta = {
homepage = "http://www.libheif.org/";
description = "ISO/IEC 23008-12:2017 HEIF image file format decoder and encoder";
license = stdenv.lib.licenses.lgpl3;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ gebner ];
};
}

View File

@ -10234,6 +10234,8 @@ with pkgs;
libhdhomerun = callPackage ../development/libraries/libhdhomerun { };
libheif = callPackage ../development/libraries/libheif {};
libhttpseverywhere = callPackage ../development/libraries/libhttpseverywhere { };
libHX = callPackage ../development/libraries/libHX { };