libicns: replace jasper with openjpeg

This commit is contained in:
c0bw3b 2019-11-17 22:08:59 +01:00
parent 652a178840
commit 329270e852

View File

@ -1,14 +1,24 @@
{ stdenv, fetchurl, libpng, jasper }:
{ stdenv, fetchurl, fetchpatch, autoreconfHook, libpng, openjpeg }:
stdenv.mkDerivation rec {
name = "libicns-0.8.1";
pname = "libicns";
version = "0.8.1";
src = fetchurl {
url = "mirror://sourceforge/icns/${name}.tar.gz";
url = "mirror://sourceforge/icns/${pname}-${version}.tar.gz";
sha256 = "1hjm8lwap7bjyyxsyi94fh5817xzqhk4kb5y0b7mb6675xw10prk";
};
buildInputs = [ libpng jasper ];
patches = [
(fetchpatch {
url = "https://sources.debian.org/data/main/libi/libicns/0.8.1-3.1/debian/patches/support-libopenjp2.patch";
sha256 = "0ss298lyzvydxvaxsadi6kbbjpwykd86jw3za76brcsg2dpssgas";
})
];
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libpng openjpeg ];
NIX_CFLAGS_COMPILE = [ "-I${openjpeg.dev}/include/${openjpeg.incDir}" ];
meta = with stdenv.lib; {
description = "Library for manipulation of the Mac OS icns resource format";