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
|
|
|
|
, mpfr, gmp, glib, pkgconfig, harfbuzz, gettext
|
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
|
|
|
|
2014-03-14 22:17:27 +01:00
|
|
|
buildInputs = [
|
2018-05-04 18:55:09 +02:00
|
|
|
bison flex eigen boost libGLU_combined glew opencsg cgal mpfr gmp glib
|
|
|
|
pkgconfig harfbuzz gettext
|
|
|
|
]
|
|
|
|
++ (with qt5; [qtbase qmake])
|
|
|
|
++ (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
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|