2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchFromGitHub, qt5, libsForQt5
|
2018-05-04 18:55:09 +02:00
|
|
|
, bison, flex, eigen, boost, libGLU_combined, glew, opencsg, cgal
|
2019-05-06 20:16:20 +02:00
|
|
|
, mpfr, gmp, glib, pkgconfig, harfbuzz, gettext, freetype, fontconfig
|
2014-01-02 17:53:57 +01:00
|
|
|
}:
|
2012-01-26 20:39:45 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-04 18:55:09 +02:00
|
|
|
version = "2018.04-git";
|
2012-01-26 20:39:45 +01:00
|
|
|
name = "openscad-${version}";
|
2013-04-25 08:19:55 +02:00
|
|
|
|
2018-05-04 18:55:09 +02:00
|
|
|
# src = fetchurl {
|
|
|
|
# url = "http://files.openscad.org/${name}.src.tar.gz";
|
|
|
|
# sha256 = "0djsgi9yx1nxr2gh1kgsqw5vrbncp8v5li0p1pp02higqf1psajx";
|
|
|
|
# };
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openscad";
|
|
|
|
repo = "openscad";
|
|
|
|
rev = "179074dff8c23cbc0e651ce8463737df0006f4ca";
|
|
|
|
sha256 = "1y63yqyd0v255liik4ff5ak6mj86d8d76w436x76hs5dk6jgpmfb";
|
2013-04-25 08:19:55 +02:00
|
|
|
};
|
2012-01-26 20:39:45 +01:00
|
|
|
|
2019-05-06 20:16:20 +02:00
|
|
|
nativeBuildInputs = [ bison flex pkgconfig ];
|
|
|
|
|
2014-03-14 22:17:27 +01:00
|
|
|
buildInputs = [
|
2019-05-06 20:16:20 +02:00
|
|
|
eigen boost glew opencsg cgal mpfr gmp glib
|
|
|
|
harfbuzz gettext freetype fontconfig
|
|
|
|
] ++ stdenv.lib.optional stdenv.isLinux libGLU_combined
|
|
|
|
++ (with qt5; [qtbase qmake] ++ stdenv.lib.optional stdenv.isDarwin qtmacextras)
|
2018-05-04 18:55:09 +02:00
|
|
|
++ (with libsForQt5; [qscintilla])
|
|
|
|
;
|
2012-01-26 20:39:45 +01:00
|
|
|
|
2016-04-17 01:30:06 +02:00
|
|
|
qmakeFlags = [ "VERSION=${version}" ];
|
2012-01-26 20:39:45 +01:00
|
|
|
|
2019-02-20 07:50:42 +01:00
|
|
|
# src/lexer.l:36:10: fatal error: parser.hxx: No such file or directory
|
|
|
|
enableParallelBuilding = false; # true by default due to qmake
|
|
|
|
|
2012-01-26 20:39:45 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-05-06 20:16:20 +02:00
|
|
|
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
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}
|
|
|
|
|
|
|
|
rmdir $out/share/openscad
|
|
|
|
'';
|
|
|
|
|
2012-01-26 20:39:45 +01:00
|
|
|
meta = {
|
|
|
|
description = "3D parametric model compiler";
|
2013-04-25 08:20:49 +02:00
|
|
|
longDescription = ''
|
|
|
|
OpenSCAD is a software for creating solid 3D CAD objects. It is free
|
2017-08-07 00:05:18 +02:00
|
|
|
software and available for Linux/UNIX, MS Windows and macOS.
|
2013-04-25 08:20:49 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://openscad.org/;
|
2013-04-25 08:20:49 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2019-05-06 20:16:20 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2018-01-28 15:32:34 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers;
|
2013-10-01 12:37:13 +02:00
|
|
|
[ bjornfor raskin the-kenny ];
|
2012-01-26 20:39:45 +01:00
|
|
|
};
|
|
|
|
}
|