Files
nixpkgs/pkgs/by-name/du/dune3d/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

78 lines
1.3 KiB
Nix

{
cmake,
desktopToDarwinBundle,
eigen,
fetchFromGitHub,
glm,
gobject-introspection,
gtkmm4,
lib,
libepoxy,
libossp_uuid,
librsvg,
libspnav,
libuuid,
libxml2,
meson,
ninja,
opencascade-occt_7_6,
pkg-config,
python3,
stdenv,
wrapGAppsHook3,
}:
let
opencascade-occt = opencascade-occt_7_6;
in
stdenv.mkDerivation (finalAttrs: {
pname = "dune3d";
version = "1.3.0";
src = fetchFromGitHub {
owner = "dune3d";
repo = "dune3d";
rev = "v${finalAttrs.version}";
hash = "sha256-9lBaenBxMoJgG5tMM+EZ87xcJ4HhFTA9RUNZt2Jx34Q=";
};
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;
};
})