94 lines
1.8 KiB
Nix
94 lines
1.8 KiB
Nix
|
{ stdenv
|
||
|
, pkgconfig
|
||
|
, glib
|
||
|
, libxml2
|
||
|
, expat
|
||
|
, fftw
|
||
|
, orc
|
||
|
, lcms
|
||
|
, imagemagick
|
||
|
, openexr
|
||
|
, libtiff
|
||
|
, libjpeg
|
||
|
, libgsf
|
||
|
, libexif
|
||
|
, ApplicationServices
|
||
|
, python27
|
||
|
, libpng ? null
|
||
|
, fetchFromGitHub
|
||
|
, fetchpatch
|
||
|
, autoreconfHook
|
||
|
, gtk-doc
|
||
|
, gobject-introspection
|
||
|
,
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "vips";
|
||
|
version = "8.9.1";
|
||
|
|
||
|
outputs = [ "bin" "out" "man" "dev" ];
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "libvips";
|
||
|
repo = "libvips";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "01vgvzlygg3fzpinb0x1rdm2sqvnqxmvxbnlbg73ygdadv3l2s0v";
|
||
|
# Remove unicode file names which leads to different checksums on HFS+
|
||
|
# vs. other filesystems because of unicode normalisation.
|
||
|
extraPostFetch = ''
|
||
|
rm -r $out/test/test-suite/images/
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
# autogen.sh should not run configure
|
||
|
# https://github.com/libvips/libvips/pull/1566
|
||
|
(fetchpatch {
|
||
|
url = "https://github.com/libvips/libvips/commit/97a92e0e6abab652fdf99313b138bfd77d70deb4.patch";
|
||
|
sha256 = "0w1sm5wmvfp8svdpk8mz57c1n6zzy3snq0g2f8yxjamv0d2gw2dp";
|
||
|
})
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkgconfig
|
||
|
autoreconfHook
|
||
|
gtk-doc
|
||
|
gobject-introspection
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
glib
|
||
|
libxml2
|
||
|
fftw
|
||
|
orc
|
||
|
lcms
|
||
|
imagemagick
|
||
|
openexr
|
||
|
libtiff
|
||
|
libjpeg
|
||
|
libgsf
|
||
|
libexif
|
||
|
python27
|
||
|
libpng
|
||
|
expat
|
||
|
] ++ stdenv.lib.optional stdenv.isDarwin ApplicationServices;
|
||
|
|
||
|
# Required by .pc file
|
||
|
propagatedBuildInputs = [
|
||
|
glib
|
||
|
];
|
||
|
|
||
|
autoreconfPhase = ''
|
||
|
NOCONFIGURE=1 ./autogen.sh
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://libvips.github.io/libvips/";
|
||
|
description = "Image processing system for large images";
|
||
|
license = licenses.lgpl2Plus;
|
||
|
maintainers = with maintainers; [ kovirobi ];
|
||
|
platforms = platforms.unix;
|
||
|
};
|
||
|
}
|