Adding panotools.

svn path=/nixpkgs/trunk/; revision=14893
This commit is contained in:
Lluís Batlle i Rossell 2009-04-05 21:41:24 +00:00
parent 0b76035b66
commit 7f9d11782e
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{stdenv, fetchsvn, libjpeg, libpng, libtiff, automake, libtool, autoconf }:
stdenv.mkDerivation {
name = "panotools-r955";
src = fetchsvn {
url = https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano;
rev = 955;
};
configurePhase = ''
export AUTOGEN_CONFIGURE_ARGS="--prefix $out"
./bootstrap
'';
buildInputs = [ libjpeg libpng libtiff automake libtool autoconf ];
meta = {
homepage = http://panotools.sourceforge.net/;
description = "Panorama Tools";
license = "GPL";
};
}

View file

@ -8577,6 +8577,10 @@ let
spellChecking = false;
};
panotools = import ../applications/graphics/panotools {
inherit stdenv fetchsvn libpng libjpeg libtiff automake libtool autoconf;
};
paraview = import ../applications/graphics/paraview {
inherit fetchurl stdenv cmake qt4;
};