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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

116 lines
3.1 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv
, fetchFromGitHub
, fetchpatch
, qtbase
, qtmultimedia
, qscintilla
, bison
, flex
, eigen
, boost
2019-11-10 16:44:34 +00:00
, libGLU, libGL
, glew
, opencsg
2023-12-18 06:15:50 +00:00
, cgal_4
, mpfr
, gmp
, glib
, pkg-config
, harfbuzz
, gettext
, freetype
, fontconfig
, double-conversion
, lib3mf
, libzip
, mkDerivation
, qtmacextras
, qmake
2020-08-05 18:35:56 +00:00
, spacenavSupport ? stdenv.isLinux, libspnav
2022-07-14 00:18:46 +00:00
, wayland
, wayland-protocols
, wrapGAppsHook3
2022-07-14 00:18:46 +00:00
, qtwayland
, cairo
}:
mkDerivation rec {
2019-04-07 10:27:58 +00:00
pname = "openscad";
2021-02-05 08:52:51 +00:00
version = "2021.01";
src = fetchFromGitHub {
owner = "openscad";
repo = "openscad";
2019-04-07 10:27:58 +00:00
rev = "${pname}-${version}";
2021-02-05 08:52:51 +00:00
sha256 = "sha256-2tOLqpFt5klFPxHNONnHVzBKEFWn4+ufx/MU+eYbliA=";
};
patches = [
(fetchpatch {
name = "CVE-2022-0496.patch";
url = "https://github.com/openscad/openscad/commit/00a4692989c4e2f191525f73f24ad8727bacdf41.patch";
sha256 = "sha256-q3SLj2b5aM/IQ8vIDj4iVcwCajgyJ5juNV/KN35uxfI=";
})
(fetchpatch {
name = "CVE-2022-0497.patch";
url = "https://github.com/openscad/openscad/commit/84addf3c1efbd51d8ff424b7da276400bbfa1a4b.patch";
sha256 = "sha256-KNEVu10E2d4G2x+FJcuHo2tjD8ygMRuhUcW9NbN98bM=";
})
];
nativeBuildInputs = [ bison flex pkg-config gettext qmake wrapGAppsHook3];
2019-05-06 18:16:20 +00:00
buildInputs = [
2023-12-18 06:15:50 +00:00
eigen boost glew opencsg cgal_4 mpfr gmp glib
2019-04-07 10:27:58 +00:00
harfbuzz lib3mf libzip double-conversion freetype fontconfig
qtbase qtmultimedia qscintilla cairo
2022-07-14 00:18:46 +00:00
] ++ lib.optionals stdenv.isLinux [ libGLU libGL wayland wayland-protocols qtwayland ]
2021-01-15 13:21:58 +00:00
++ lib.optional stdenv.isDarwin qtmacextras
2020-08-05 18:35:56 +00:00
++ lib.optional spacenavSupport libspnav
;
2020-08-05 18:35:56 +00:00
qmakeFlags = [ "VERSION=${version}" ] ++
lib.optionals spacenavSupport [
"ENABLE_SPNAV=1"
"SPNAV_INCLUDEPATH=${libspnav}/include"
"SPNAV_LIBPATH=${libspnav}/lib"
];
enableParallelBuilding = true;
preBuild = ''
make objects/parser.cxx
'';
2021-01-15 13:21:58 +00:00
postInstall = lib.optionalString stdenv.isDarwin ''
2019-05-06 18:16:20 +00:00
mkdir $out/Applications
mv $out/bin/*.app $out/Applications
rmdir $out/bin || true
mv --target-directory=$out/Applications/OpenSCAD.app/Contents/Resources \
$out/share/openscad/{examples,color-schemes,locale,libraries,fonts,templates}
2019-05-06 18:16:20 +00:00
rmdir $out/share/openscad
'';
meta = {
description = "3D parametric model compiler";
longDescription = ''
OpenSCAD is a software for creating solid 3D CAD objects. It is free
software and available for Linux/UNIX, MS Windows and macOS.
Unlike most free software for creating 3D models (such as the famous
application Blender) it does not focus on the artistic aspects of 3D
modelling but instead on the CAD aspects. Thus it might be the
application you are looking for when you are planning to create 3D models of
machine parts but pretty sure is not what you are looking for when you are more
interested in creating computer-animated movies.
'';
homepage = "https://openscad.org/";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ bjornfor raskin gebner ];
mainProgram = "openscad";
};
}