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