2010-11-12 23:02:08 +01:00
|
|
|
{ fetchurl, stdenv, libjpeg, libpng, libtiff, perl }:
|
2009-04-05 23:41:24 +02:00
|
|
|
|
2010-11-12 23:02:08 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libpano13-2.9.17";
|
2009-04-05 23:41:24 +02:00
|
|
|
|
2010-11-12 23:02:08 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/panotools/libpano13/${name}/${name}.tar.gz";
|
|
|
|
sha256 = "1zcrkw0xw11170mlhh9r8562gafwx3hd92wahl9xxaah5z4v0am2";
|
2009-04-05 23:41:24 +02:00
|
|
|
};
|
|
|
|
|
2010-11-12 23:02:08 +01:00
|
|
|
buildInputs = [ perl libjpeg libpng libtiff ];
|
2009-04-05 23:41:24 +02:00
|
|
|
|
2010-11-12 23:02:08 +01:00
|
|
|
doCheck = true;
|
2009-04-05 23:41:24 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://panotools.sourceforge.net/;
|
2009-04-06 11:34:28 +02:00
|
|
|
description = "Free software suite for authoring and displaying virtual reality panoramas";
|
2010-11-12 23:02:08 +01:00
|
|
|
license = "GPLv2+";
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2009-04-05 23:41:24 +02:00
|
|
|
};
|
|
|
|
}
|