nixpkgs/pkgs/applications/graphics/panotools/default.nix
Lluís Batlle i Rossell 613cc80e1d Adding sha256 hash to panotools, and improving its description.
svn path=/nixpkgs/trunk/; revision=14900
2009-04-06 09:34:28 +00:00

25 lines
681 B
Nix

{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;
sha256 = "e896c21caa098d33f33f33f134a8c9a725686c2470fe3cd08b76cd7934a56034";
};
configurePhase = ''
export AUTOGEN_CONFIGURE_ARGS="--prefix $out"
./bootstrap
'';
buildInputs = [ libjpeg libpng libtiff automake libtool autoconf ];
meta = {
homepage = http://panotools.sourceforge.net/;
description = "Free software suite for authoring and displaying virtual reality panoramas";
license = "LGPL";
};
}