Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
789 B
Nix
44 lines
789 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
cmake,
|
|
libjpeg,
|
|
libpng,
|
|
libtiff,
|
|
perl,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libpano13";
|
|
version = "2.9.22";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/panotools/libpano13-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-r/xoMM2+ccKNJzHcv43qKs2m2f/UYJxtvzugxoRAqOM=";
|
|
};
|
|
|
|
patches = [ ./cmake4.patch ];
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
perl
|
|
];
|
|
|
|
buildInputs = [
|
|
libjpeg
|
|
libpng
|
|
libtiff
|
|
];
|
|
|
|
meta = {
|
|
description = "Free software suite for authoring and displaying virtual reality panoramas";
|
|
homepage = "https://panotools.sourceforge.net/";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.wegank ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|