1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
{
cmake,
desktopToDarwinBundle,
eigen,
fetchFromGitHub,
glm,
gobject-introspection,
gtkmm4,
lib,
libepoxy,
libossp_uuid,
librsvg,
libspnav,
libuuid,
libxml2,
llvmPackages_17,
meson,
ninja,
opencascade-occt_7_6,
pkg-config,
python3,
stdenv,
wrapGAppsHook3,
}:
let
stdenv' = if stdenv.hostPlatform.isDarwin then llvmPackages_17.stdenv else stdenv;
opencascade-occt = opencascade-occt_7_6;
in
stdenv'.mkDerivation (finalAttrs: {
pname = "dune3d";
version = "1.1.0";
src = fetchFromGitHub {
owner = "dune3d";
repo = "dune3d";
rev = "v${finalAttrs.version}";
hash = "sha256-Z/kdOc/MbnnEyRsel3aZGndTAy1eCdAK0Wdta0HxaE4=";
};
nativeBuildInputs = [
gobject-introspection
meson
ninja
pkg-config
wrapGAppsHook3
libxml2 # for xmllints
] ++ lib.optional stdenv.hostPlatform.isDarwin desktopToDarwinBundle;
buildInputs = [
cmake
eigen
glm
gtkmm4
libepoxy
librsvg
libspnav
(if stdenv.hostPlatform.isLinux then libuuid else libossp_uuid)
opencascade-occt
(python3.withPackages (pp: [
pp.pygobject3
]))
];
env.CASROOT = opencascade-occt;
meta = {
description = "3D CAD application";
homepage = "https://dune3d.org";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ _0x4A6F jue89 ];
mainProgram = "dune3d";
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
})
|