1 { fetchurl, lib, stdenv, libjpeg, libpng, libtiff, perl, cmake }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/panotools/${pname}-${version}.tar.gz";
9 sha256 = "sha256-eeWhRSGZMF4pYUYnIO9ZQRUnecEnxblvw0DSSS5jNZA=";
12 buildInputs = [ perl libjpeg libpng libtiff ];
13 nativeBuildInputs = [ cmake ];
15 # one of the tests succeeds on my machine but fails on Hydra (no idea why)
19 homepage = "http://panotools.sourceforge.net/";
20 description = "Free software suite for authoring and displaying virtual reality panoramas";
21 license = lib.licenses.gpl2Plus;
23 platforms = lib.platforms.gnu ++ lib.platforms.linux; # arbitrary choice