summary refs log tree commit diff
path: root/pkgs/applications/graphics/panotools/default.nix
blob: 8216c415cb62bc72e5b9704b7cc6305b608a0f37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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
  };
}