nixpkgs/pkgs/applications/graphics/panotools/default.nix
Ludovic Courtès 10306f1b4c libpano13 2.9.17.
svn path=/nixpkgs/branches/stdenv-updates/; revision=24680
2010-11-12 22:02:08 +00:00

23 lines
602 B
Nix

{ fetchurl, stdenv, libjpeg, libpng, libtiff, perl }:
stdenv.mkDerivation rec {
name = "libpano13-2.9.17";
src = fetchurl {
url = "mirror://sourceforge/panotools/libpano13/${name}/${name}.tar.gz";
sha256 = "1zcrkw0xw11170mlhh9r8562gafwx3hd92wahl9xxaah5z4v0am2";
};
buildInputs = [ perl libjpeg libpng libtiff ];
doCheck = true;
meta = {
homepage = http://panotools.sourceforge.net/;
description = "Free software suite for authoring and displaying virtual reality panoramas";
license = "GPLv2+";
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}