Last active
October 16, 2015 09:54
-
-
Save gamb/8e13fe55bd21a673c11a to your computer and use it in GitHub Desktop.
Revisions
-
Adam Gamble revised this gist
Oct 16, 2015 . No changes.There are no files selected for viewing
-
Adam Gamble created this gist
Oct 16, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ source $stdenv/setup tar xvfz $src cd vips* ./configure --prefix=$out make make install This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ { stdenv, fetchurl, pkgconfig, perl, glib, libxml2, pygobject3, libgsf }: stdenv.mkDerivation { name = "vips-8.1.1"; builder = ./builder.sh; nativeBuildInputs = [ perl pkgconfig glib libxml2 pygobject3 libgsf ]; src = fetchurl { url = http://www.vips.ecs.soton.ac.uk/supported/current/vips-8.1.1.tar.gz; sha256 = "7d53c9b1e2ecd87ab9a7ccc9abad8b3a4f2575115b8a2066a15b0c24f17d9a04"; }; }