Adding panotools.
svn path=/nixpkgs/trunk/; revision=14893
This commit is contained in:
parent
0b76035b66
commit
7f9d11782e
23
pkgs/applications/graphics/panotools/default.nix
Normal file
23
pkgs/applications/graphics/panotools/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -8577,6 +8577,10 @@ let
|
|||||||
spellChecking = false;
|
spellChecking = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
panotools = import ../applications/graphics/panotools {
|
||||||
|
inherit stdenv fetchsvn libpng libjpeg libtiff automake libtool autoconf;
|
||||||
|
};
|
||||||
|
|
||||||
paraview = import ../applications/graphics/paraview {
|
paraview = import ../applications/graphics/paraview {
|
||||||
inherit fetchurl stdenv cmake qt4;
|
inherit fetchurl stdenv cmake qt4;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user