2019-07-29 00:10:17 +02:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, qtbase
|
|
|
|
, qtmultimedia
|
|
|
|
, qscintilla
|
|
|
|
, bison
|
|
|
|
, flex
|
|
|
|
, eigen
|
|
|
|
, boost
|
|
|
|
, libGLU_combined
|
|
|
|
, glew
|
|
|
|
, opencsg
|
|
|
|
, cgal
|
|
|
|
, mpfr
|
|
|
|
, gmp
|
|
|
|
, glib
|
|
|
|
, pkgconfig
|
|
|
|
, harfbuzz
|
|
|
|
, gettext
|
|
|
|
, freetype
|
|
|
|
, fontconfig
|
|
|
|
, double-conversion
|
|
|
|
, lib3mf
|
|
|
|
, libzip
|
|
|
|
, mkDerivation
|
|
|
|
, qtmacextras
|
|
|
|
, qmake
|
2014-01-02 17:53:57 +01:00
|
|
|
}:
|
2012-01-26 20:39:45 +01:00
|
|
|
|
2019-07-28 21:18:55 +02:00
|
|
|
mkDerivation rec {
|
2019-04-07 12:27:58 +02:00
|
|
|
pname = "openscad";
|
|
|
|
version = "2019.05";
|
2013-04-25 08:19:55 +02:00
|
|
|
|
2018-05-04 18:55:09 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openscad";
|
|
|
|
repo = "openscad";
|
2019-04-07 12:27:58 +02:00
|
|
|
rev = "${pname}-${version}";
|
|
|
|
sha256 = "1qz384jqgk75zxk7sqd22ma9pyd94kh4h6a207ldx7p9rny6vc5l";
|
2013-04-25 08:19:55 +02:00
|
|
|
};
|
2012-01-26 20:39:45 +01:00
|
|
|
|
2019-07-29 00:10:17 +02:00
|
|
|
nativeBuildInputs = [ bison flex pkgconfig gettext qmake ];
|
2019-05-06 20:16:20 +02:00
|
|
|
|
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
|
2019-04-07 12:27:58 +02:00
|
|
|
harfbuzz lib3mf libzip double-conversion freetype fontconfig
|
2019-07-29 00:10:17 +02:00
|
|
|
qtbase qtmultimedia qscintilla
|
2019-05-06 20:16:20 +02:00
|
|
|
] ++ stdenv.lib.optional stdenv.isLinux libGLU_combined
|
2019-07-29 00:10:17 +02:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin qtmacextras
|
2018-05-04 18:55:09 +02:00
|
|
|
;
|
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
|
|
|
|
|
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;
|
2019-04-07 12:27:58 +02:00
|
|
|
[ bjornfor raskin the-kenny gebner ];
|
2012-01-26 20:39:45 +01:00
|
|
|
};
|
|
|
|
}
|