forked from mirrors/nixpkgs
d316ca55a8
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. These checks were done: - built on NixOS - /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4/bin/vips passed the binary check. - /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4/bin/vipsedit passed the binary check. - /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4/bin/vipsthumbnail passed the binary check. - /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4/bin/vipsheader passed the binary check. - Warning: no invocation of /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4/bin/light_correct had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4/bin/shrink_width had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4/bin/batch_image_convert had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4/bin/batch_rubber_sheet had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4/bin/batch_crop had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4/bin/vipsprofile had a zero exit code or showed the expected version - /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4/bin/vips-8.6 passed the binary check. - 5 of 11 passed binary check by having a zero exit code. - 0 of 11 passed binary check by having the new version present in output. - found 8.6.4 with grep in /nix/store/cffal7h8l17axil62hrsmx2lhja9fpmm-vips-8.6.4 - directory tree listing: https://gist.github.com/3d47ce9f75e2a1d701b3089ffa679618 - du listing: https://gist.github.com/b6aa67c89ec9bb55f45e21ae98e82fdc
30 lines
900 B
Nix
30 lines
900 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, libxml2, flex, bison, vips, expat,
|
|
fftw, orc, lcms, imagemagick, openexr, libtiff, libjpeg, libgsf, libexif,
|
|
python27, libpng, matio ? null, cfitsio ? null, libwebp ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "vips-${version}";
|
|
version = "8.6.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/jcupitt/libvips/releases/download/v${version}/${name}.tar.gz";
|
|
sha256 = "1x4ai997yfl4155r4k3m5fa5hj3030c4abi5g49kfarbr60a0ca6";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|