Merge pull request #178602 from NixOS/backport-174022-to-release-22.05

[Backport release-22.05] panotools: 2.9.20 -> 2.9.21
This commit is contained in:
ajs124
2022-06-22 22:54:58 +02:00
committed by GitHub

View File

@@ -1,15 +1,16 @@
{ fetchurl, lib, stdenv, libjpeg, libpng, libtiff, perl }:
{ fetchurl, lib, stdenv, libjpeg, libpng, libtiff, perl, cmake }:
stdenv.mkDerivation rec {
pname = "libpano13";
version = "2.9.20";
version = "2.9.21";
src = fetchurl {
url = "mirror://sourceforge/panotools/${pname}-${version}.tar.gz";
sha256 = "12cv4886l1czfjwy7k6ipgf3zjksgwhdjzr2s9fdg33vqcv2hlrv";
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;