2014-07-12 13:18:22 +02:00
|
|
|
{ stdenv, cmake, fetchurl, gnumake, pkgconfig
|
|
|
|
, boost, gettext, tclap, wxGTK
|
|
|
|
, freeglut, glew, libXi, libXmu, mesa
|
|
|
|
, autopanosiftc, enblendenfuse, exiv2, ilmbase, lensfun, libpng, libtiff
|
|
|
|
, openexr, panotools, perlPackages
|
|
|
|
}:
|
2009-04-05 23:41:38 +02:00
|
|
|
|
2009-12-12 19:58:40 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-07-12 13:18:22 +02:00
|
|
|
name = "hugin-2013.0.0";
|
2009-04-05 23:41:38 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-05-07 00:33:50 +02:00
|
|
|
url = "mirror://sourceforge/hugin/${name}.tar.bz2";
|
2014-07-12 13:18:22 +02:00
|
|
|
sha256 = "1mgbvg09xvf0zcm9jfv5lb65nd292l86ffa23yp4pzm6izaiwkj8";
|
2009-04-05 23:41:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR";
|
|
|
|
|
2014-07-12 13:18:22 +02:00
|
|
|
buildInputs = [ boost gettext tclap wxGTK
|
|
|
|
freeglut glew libXi libXmu mesa
|
|
|
|
exiv2 ilmbase lensfun libtiff libpng openexr panotools
|
|
|
|
];
|
2009-04-05 23:41:38 +02:00
|
|
|
|
2014-07-12 13:18:22 +02:00
|
|
|
# disable installation of the python scripting interface
|
|
|
|
cmakeFlags = [ "-DBUILD_HSI:BOOl=OFF" ];
|
2009-12-10 23:19:52 +01:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2012-02-10 11:13:39 +01:00
|
|
|
|
2014-08-12 21:17:53 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-07-12 13:18:22 +02:00
|
|
|
# commandline tools needed by the hugin batch processor
|
|
|
|
# you may have to tell hugin (in the preferences) where these binaries reside
|
|
|
|
propagatedUserEnvPackages = [ autopanosiftc enblendenfuse gnumake
|
|
|
|
perlPackages.ImageExifTool
|
|
|
|
];
|
2012-02-10 11:13:39 +01:00
|
|
|
|
2009-05-24 12:57:41 +02:00
|
|
|
postInstall = ''
|
2012-02-10 11:13:39 +01:00
|
|
|
mkdir -p "$out/nix-support"
|
|
|
|
echo $propagatedUserEnvPackages > $out/nix-support/propagated-user-env-packages
|
2009-05-24 12:57:41 +02:00
|
|
|
'';
|
2009-04-05 23:41:38 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://hugin.sourceforge.net/;
|
2009-04-06 11:19:51 +02:00
|
|
|
description = "Toolkit for stitching photographs and assembling panoramas, together with an easy to use graphical front end";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2009-11-29 20:22:22 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-04-05 23:41:38 +02:00
|
|
|
};
|
|
|
|
}
|