Merge pull request #62591 from r-ryantm/auto-update/vips
vips: 8.7.4 -> 8.8.0
This commit is contained in:
commit
1c8beb88d5
2 changed files with 14 additions and 8 deletions
|
@ -2,11 +2,12 @@
|
|||
fftw, gsl, goffice, libgsf }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "nip2-8.3.0";
|
||||
pname = "nip2";
|
||||
version = "8.7.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.vips.ecs.soton.ac.uk/supported/current/${name}.tar.gz";
|
||||
sha256 = "0vr12gyfvhxx2a28y74lzfg379d1fk0g9isc69k0vdgpn4y1i8aa";
|
||||
url = "https://github.com/libvips/nip2/releases/download/v${version}/nip2-${version}.tar.gz";
|
||||
sha256 = "0l7n427njif53npqn02gfjjly8y3khbrkzqxp10j5vp9h97psgiw";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
|
@ -15,10 +16,10 @@ stdenv.mkDerivation rec {
|
|||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.vips.ecs.soton.ac.uk;
|
||||
homepage = "https://github.com/libvips/nip2";
|
||||
description = "Graphical user interface for VIPS image processing system";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ kovirobi ];
|
||||
platforms = platforms.linux;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -10,13 +10,18 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "vips-${version}";
|
||||
version = "8.7.4";
|
||||
version = "8.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libvips";
|
||||
repo = "libvips";
|
||||
rev = "v${version}";
|
||||
sha256 = "0mcax1qg5i4iqlvgkz3s0c938d7ymx24pv3q2n3w2pjylnnd489s";
|
||||
sha256 = "17wz4rxn3jb171lrh8v3dxiykjhzwwzs5r7ly651dspcbi6s3r6c";
|
||||
# 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/
|
||||
'';
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig autoreconfHook gtk-doc gobject-introspection ];
|
||||
|
@ -30,7 +35,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.vips.ecs.soton.ac.uk;
|
||||
homepage = "https://libvips.github.io/libvips/";
|
||||
description = "Image processing system for large images";
|
||||
license = licenses.lgpl2Plus;
|
||||
maintainers = with maintainers; [ kovirobi ];
|
||||
|
|
Loading…
Reference in a new issue