2021-12-06 16:07:01 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, vtk_9, libX11, libGL, Cocoa, OpenGL }:
|
2020-10-11 12:50:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "f3d";
|
2023-10-09 19:29:22 +00:00
|
|
|
version = "2.2.1";
|
2020-10-11 12:50:04 +00:00
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "f3d-app";
|
2020-10-11 12:50:04 +00:00
|
|
|
repo = "f3d";
|
2023-07-15 17:15:38 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-10-09 19:29:22 +00:00
|
|
|
hash = "sha256-3Pg8uvrUGPKPmsn24q5HPMg9dgvukAXBgSVTW0NiCME=";
|
2020-10-11 12:50:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
buildInputs = [ vtk_9 ] ++ lib.optionals stdenv.isDarwin [ Cocoa OpenGL ];
|
2020-10-11 12:50:04 +00:00
|
|
|
|
2022-09-14 18:05:37 +00:00
|
|
|
# conflict between VTK and Nixpkgs;
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/89167
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
|
|
|
"-DCMAKE_INSTALL_BINDIR=bin"
|
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 12:50:04 +00:00
|
|
|
description = "Fast and minimalist 3D viewer using VTK";
|
2021-12-06 16:07:01 +00:00
|
|
|
homepage = "https://f3d-app.github.io/f3d";
|
2023-07-15 17:15:38 +00:00
|
|
|
changelog = "https://github.com/f3d-app/f3d/releases/tag/v${version}";
|
2020-10-11 12:50:04 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
|
|
platforms = with platforms; unix;
|
2024-01-25 14:12:00 +00:00
|
|
|
# As of 2024-01-20, this fails with:
|
|
|
|
# error while loading shared libraries: libvtkInteractionWidgets.so.1: cannot open shared object file: No such file or directory
|
|
|
|
# Tracking issue: https://github.com/NixOS/nixpkgs/issues/262328
|
|
|
|
broken = true;
|
2020-10-11 12:50:04 +00:00
|
|
|
};
|
|
|
|
}
|