2018-02-24 14:12:44 +01:00
|
|
|
{ stdenv, fetchurl, qt4, qmake4Hook, bison, flex, eigen, boost, libGLU_combined, glew, opencsg, cgal
|
2015-08-06 10:29:34 +02:00
|
|
|
, mpfr, gmp, glib, pkgconfig, harfbuzz, qscintilla, gettext
|
2014-01-02 17:53:57 +01:00
|
|
|
}:
|
2012-01-26 20:39:45 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-01-28 15:32:34 +01:00
|
|
|
version = "2015.03-3";
|
2012-01-26 20:39:45 +01:00
|
|
|
name = "openscad-${version}";
|
2013-04-25 08:19:55 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-03-14 22:17:27 +01:00
|
|
|
url = "http://files.openscad.org/${name}.src.tar.gz";
|
2018-01-28 15:32:34 +01:00
|
|
|
sha256 = "0djsgi9yx1nxr2gh1kgsqw5vrbncp8v5li0p1pp02higqf1psajx";
|
2013-04-25 08:19:55 +02:00
|
|
|
};
|
2012-01-26 20:39:45 +01:00
|
|
|
|
2014-03-14 22:17:27 +01:00
|
|
|
buildInputs = [
|
2018-02-24 14:12:44 +01:00
|
|
|
qt4 qmake4Hook bison flex eigen boost libGLU_combined glew opencsg cgal mpfr gmp glib
|
2015-08-06 10:29:34 +02:00
|
|
|
pkgconfig harfbuzz qscintilla gettext
|
2014-03-14 22:17:27 +01: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
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
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;
|
2013-10-01 12:37:13 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
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
|
|
|
};
|
|
|
|
}
|