Skip to content

Commit

Permalink
vips: fetch from GitHub and build directly from source
Browse files Browse the repository at this point in the history
This used to build from what the README calls a "pre-baked tarball".
  • Loading branch information
ryantm committed Oct 7, 2018
1 parent f2b3b13 commit 0329e26
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions pkgs/tools/graphics/vips/default.nix
@@ -1,24 +1,34 @@
{ stdenv, fetchurl, pkgconfig, glib, libxml2, expat,
{ stdenv, pkgconfig, glib, libxml2, expat,
fftw, orc, lcms, imagemagick, openexr, libtiff, libjpeg, libgsf, libexif,
ApplicationServices,
python27, libpng ? null
python27, libpng ? null,
fetchFromGitHub,
autoreconfHook,
gtk-doc,
gobjectIntrospection,
}:

stdenv.mkDerivation rec {
name = "vips-${version}";
version = "8.7.0";

src = fetchurl {
url = "https://github.com/jcupitt/libvips/releases/download/v${version}/${name}.tar.gz";
sha256 = "16086hdg6m44llz69fkp1n0ckjb7zhl6i2bg0wwllrchznikwiy4";
src = fetchFromGitHub {
owner = "libvips";
repo = "libvips";
rev = "v${version}";
sha256 = "1dwcpmpqbgb9lkajnqv50mrsn97mxbxpq6b5aya7fgfkgdnrs9sw";
};

nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig autoreconfHook gtk-doc gobjectIntrospection ];
buildInputs = [ glib libxml2 fftw orc lcms
imagemagick openexr libtiff libjpeg
libgsf libexif python27 libpng expat ]
++ stdenv.lib.optional stdenv.isDarwin ApplicationServices;

autoreconfPhase = ''
./autogen.sh
'';

meta = with stdenv.lib; {
homepage = http://www.vips.ecs.soton.ac.uk;
description = "Image processing system for large images";
Expand Down

0 comments on commit 0329e26

Please sign in to comment.