mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
35 lines
953 B
Nix
35 lines
953 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, vtk_9, libX11, libGL, Cocoa, OpenGL }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "f3d";
|
|
version = "1.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "f3d-app";
|
|
repo = "f3d";
|
|
rev = "v${version}";
|
|
hash = "sha256-dOpiX7xJWDKHqPLGvlgv7NHgfzyeZhJd898+KzAmD4Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ vtk_9 ]
|
|
++ lib.optionals stdenv.isLinux [ libGL libX11 ]
|
|
++ lib.optionals stdenv.isDarwin [ Cocoa OpenGL ];
|
|
|
|
# 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"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Fast and minimalist 3D viewer using VTK";
|
|
homepage = "https://f3d-app.github.io/f3d";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|