2014-07-12 12:17:53 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, boost, freeglut, glew, gsl, lcms2, libpng, libtiff, libxmi, mesa, vigra
|
|
|
|
, pkgconfig, perl }:
|
2009-04-05 22:41:38 +01:00
|
|
|
|
2012-02-05 09:26:06 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-07-12 12:17:53 +01:00
|
|
|
name = "enblend-enfuse-4.1.3";
|
2009-04-05 22:41:38 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-02-05 09:26:06 +00:00
|
|
|
url = "mirror://sourceforge/enblend/${name}.tar.gz";
|
2014-07-12 12:17:53 +01:00
|
|
|
sha256 = "1b7r1nnwaind0344ckwggy0ghl0ipbk9jzylsxcjfl05rnasw00w";
|
2009-04-05 22:41:38 +01:00
|
|
|
};
|
|
|
|
|
2014-10-01 20:55:40 +01:00
|
|
|
buildInputs = [ boost freeglut glew gsl lcms2 libpng libtiff libxmi mesa vigra ];
|
2012-02-05 09:26:06 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ perl pkgconfig ];
|
2009-04-05 22:41:38 +01:00
|
|
|
|
2014-08-12 20:17:53 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-04-05 22:41:38 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://enblend.sourceforge.net/;
|
|
|
|
description = "Blends away the seams in a panoramic image mosaic using a multiresolution spline";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2009-04-05 22:41:38 +01:00
|
|
|
};
|
|
|
|
}
|