56 lines
1.9 KiB
Nix
56 lines
1.9 KiB
Nix
{ stdenv, fetchFromGitHub, qt5, libsForQt5
|
|
, bison, flex, eigen, boost, libGLU_combined, glew, opencsg, cgal
|
|
, mpfr, gmp, glib, pkgconfig, harfbuzz, gettext
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2018.04-git";
|
|
name = "openscad-${version}";
|
|
|
|
# src = fetchurl {
|
|
# url = "http://files.openscad.org/${name}.src.tar.gz";
|
|
# sha256 = "0djsgi9yx1nxr2gh1kgsqw5vrbncp8v5li0p1pp02higqf1psajx";
|
|
# };
|
|
src = fetchFromGitHub {
|
|
owner = "openscad";
|
|
repo = "openscad";
|
|
rev = "179074dff8c23cbc0e651ce8463737df0006f4ca";
|
|
sha256 = "1y63yqyd0v255liik4ff5ak6mj86d8d76w436x76hs5dk6jgpmfb";
|
|
};
|
|
|
|
buildInputs = [
|
|
bison flex eigen boost libGLU_combined glew opencsg cgal mpfr gmp glib
|
|
pkgconfig harfbuzz gettext
|
|
]
|
|
++ (with qt5; [qtbase qmake])
|
|
++ (with libsForQt5; [qscintilla])
|
|
;
|
|
|
|
qmakeFlags = [ "VERSION=${version}" ];
|
|
|
|
# src/lexer.l:36:10: fatal error: parser.hxx: No such file or directory
|
|
enableParallelBuilding = false; # true by default due to qmake
|
|
|
|
doCheck = false;
|
|
|
|
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 = http://openscad.org/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers;
|
|
[ bjornfor raskin the-kenny ];
|
|
};
|
|
}
|