nixpkgs/pkgs/applications/graphics/f3d/default.nix

28 lines
733 B
Nix
Raw Normal View History

2021-11-20 18:46:22 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, vtk_9, libX11, libGL, Cocoa, OpenGL }:
2020-09-01 23:08:29 +01:00
stdenv.mkDerivation rec {
pname = "f3d";
2021-12-22 07:26:15 +00:00
version = "1.2.1";
2020-09-01 23:08:29 +01:00
2021-11-20 18:46:22 +00:00
src = fetchFromGitHub {
owner = "f3d-app";
2020-09-01 23:08:29 +01:00
repo = "f3d";
rev = "v${version}";
2021-12-22 07:26:15 +00:00
sha256 = "sha256-Yn1IcGWAbXjG0wJQjRimvreozFu9mf0FMwyGNYc4P+U=";
2020-09-01 23:08:29 +01:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ vtk_9 ]
2021-01-15 13:21:58 +00:00
++ lib.optionals stdenv.isLinux [ libGL libX11 ]
++ lib.optionals stdenv.isDarwin [ Cocoa OpenGL ];
2020-09-01 23:08:29 +01:00
meta = with lib; {
2020-09-01 23:08:29 +01:00
description = "Fast and minimalist 3D viewer using VTK";
homepage = "https://f3d-app.github.io/f3d";
2020-09-01 23:08:29 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
platforms = with platforms; unix;
};
}