diff options
Diffstat (limited to 'pkgs/applications/graphics/panotools/default.nix')
-rw-r--r-- | pkgs/applications/graphics/panotools/default.nix | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/applications/graphics/panotools/default.nix b/pkgs/applications/graphics/panotools/default.nix deleted file mode 100644 index c7e7b7d07f5e..000000000000 --- a/pkgs/applications/graphics/panotools/default.nix +++ /dev/null @@ -1,43 +0,0 @@ -{ lib -, stdenv -, fetchurl -, cmake -, libjpeg -, libpng -, libtiff -, perl -, darwin -}: - -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="; - }; - - strictDeps = true; - - nativeBuildInputs = [ - cmake - perl - ]; - - buildInputs = [ - libjpeg - libpng - libtiff - ] ++ lib.optionals stdenv.isDarwin [ - darwin.apple_sdk.frameworks.Carbon - ]; - - 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; - }; -}) |