libheif: init at 1.3.2
This commit is contained in:
parent
47216a62d3
commit
055a355c0b
26
pkgs/development/libraries/libheif/default.nix
Normal file
26
pkgs/development/libraries/libheif/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -10234,6 +10234,8 @@ with pkgs;
|
|||||||
|
|
||||||
libhdhomerun = callPackage ../development/libraries/libhdhomerun { };
|
libhdhomerun = callPackage ../development/libraries/libhdhomerun { };
|
||||||
|
|
||||||
|
libheif = callPackage ../development/libraries/libheif {};
|
||||||
|
|
||||||
libhttpseverywhere = callPackage ../development/libraries/libhttpseverywhere { };
|
libhttpseverywhere = callPackage ../development/libraries/libhttpseverywhere { };
|
||||||
|
|
||||||
libHX = callPackage ../development/libraries/libHX { };
|
libHX = callPackage ../development/libraries/libHX { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user