python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / graphics / panotools / default.nix
blobdbc5b973fe9c0aa305dbf21a15fdce0bdfd7d92c
1 { fetchurl, lib, stdenv, libjpeg, libpng, libtiff, perl, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "libpano13";
5   version = "2.9.21";
7   src = fetchurl {
8     url = "mirror://sourceforge/panotools/${pname}-${version}.tar.gz";
9     sha256 = "sha256-eeWhRSGZMF4pYUYnIO9ZQRUnecEnxblvw0DSSS5jNZA=";
10   };
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)
16   #doCheck = true;
18   meta = {
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
24   };