summary refs log tree commit diff
path: root/pkgs/applications/graphics/panotools/default.nix
blob: 0bd1fc20c59fc95e0029f1307e6571ab95f81dda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ fetchurl, lib, stdenv, libjpeg, libpng, libtiff, perl, cmake }:

stdenv.mkDerivation rec {
  pname = "libpano13";
  version = "2.9.21";

  src = fetchurl {
    url = "mirror://sourceforge/panotools/${pname}-${version}.tar.gz";
    sha256 = "sha256-eeWhRSGZMF4pYUYnIO9ZQRUnecEnxblvw0DSSS5jNZA=";
  };

  buildInputs = [ perl libjpeg libpng libtiff ];
  nativeBuildInputs = [ cmake ];

  # one of the tests succeeds on my machine but fails on Hydra (no idea why)
  #doCheck = true;

  meta = {
    homepage = "https://panotools.sourceforge.net/";
    description = "Free software suite for authoring and displaying virtual reality panoramas";
    license = lib.licenses.gpl2Plus;

    platforms = lib.platforms.gnu ++ lib.platforms.linux;  # arbitrary choice
  };
}