42c56458eb
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/vips/versions.
29 lines
842 B
Nix
29 lines
842 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, libxml2, expat,
|
|
fftw, orc, lcms, imagemagick, openexr, libtiff, libjpeg, libgsf, libexif,
|
|
python27, libpng ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "vips-${version}";
|
|
version = "8.6.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/jcupitt/libvips/releases/download/v${version}/${name}.tar.gz";
|
|
sha256 = "1nymm4vzscb68aifin9q742ff64b4k4ddppq1060w8hf6h7ay0l7";
|
|
};
|
|
|
|
buildInputs =
|
|
[ pkgconfig glib libxml2 fftw orc lcms
|
|
imagemagick openexr libtiff libjpeg
|
|
libgsf libexif python27 libpng
|
|
expat
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.vips.ecs.soton.ac.uk;
|
|
description = "Image processing system for large images";
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = with maintainers; [ kovirobi ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|