2018-05-15 10:19:29 +02:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, python3, qtbase, qtquickcontrols2, curaengine }:
|
2017-02-25 23:05:04 +01:00
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
mkDerivation rec {
|
2014-09-26 12:12:14 +02:00
|
|
|
name = "cura-${version}";
|
2018-02-25 17:57:07 +01:00
|
|
|
version = "3.2.1";
|
2014-03-25 23:17:17 +01:00
|
|
|
|
2017-02-25 23:05:04 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Ultimaker";
|
|
|
|
repo = "Cura";
|
|
|
|
rev = version;
|
2018-02-25 17:57:07 +01:00
|
|
|
sha256 = "0yaya0ww92qjm7g31q85m5f95nwdapldjx1kdf1ar4yzwh4r15rp";
|
2014-03-25 23:17:17 +01:00
|
|
|
};
|
|
|
|
|
2018-05-15 10:48:56 +02:00
|
|
|
materials = fetchFromGitHub {
|
|
|
|
owner = "Ultimaker";
|
|
|
|
repo = "fdm_materials";
|
|
|
|
rev = "3.2.1";
|
|
|
|
sha256 = "1kr9ga727x0kazw2ypac9bi6g6lddbsx80qw8fbn0514kg2mr9n3";
|
|
|
|
};
|
|
|
|
|
2018-05-15 10:19:29 +02:00
|
|
|
buildInputs = [ qtbase qtquickcontrols2 ];
|
2017-10-21 03:15:00 +02:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [ uranium zeroconf pyserial numpy-stl ];
|
2017-05-17 21:26:11 +02:00
|
|
|
nativeBuildInputs = [ cmake python3.pkgs.wrapPython ];
|
2014-03-25 23:17:17 +01:00
|
|
|
|
2017-07-27 14:51:00 +02:00
|
|
|
cmakeFlags = [ "-DURANIUM_DIR=${python3.pkgs.uranium.src}" ];
|
2014-03-25 23:17:17 +01:00
|
|
|
|
2017-02-25 23:05:04 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed -i 's,/python''${PYTHON_VERSION_MAJOR}/dist-packages,/python''${PYTHON_VERSION_MAJOR}.''${PYTHON_VERSION_MINOR}/site-packages,g' CMakeLists.txt
|
|
|
|
sed -i 's, executable_name = .*, executable_name = "${curaengine}/bin/CuraEngine",' plugins/CuraEngineBackend/CuraEngineBackend.py
|
|
|
|
'';
|
2014-03-25 23:17:17 +01:00
|
|
|
|
2018-05-15 10:48:56 +02:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/cura/resources/materials
|
|
|
|
cp ${materials}/*.fdm_material $out/share/cura/resources/materials/
|
|
|
|
'';
|
|
|
|
|
2017-02-25 23:05:04 +01:00
|
|
|
postFixup = ''
|
2014-03-25 23:17:17 +01:00
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
meta = with lib; {
|
2017-02-25 23:05:04 +01:00
|
|
|
description = "3D printer / slicing GUI built on top of the Uranium framework";
|
2018-02-25 17:47:45 +01:00
|
|
|
homepage = https://github.com/Ultimaker/Cura;
|
2014-03-25 23:17:17 +01:00
|
|
|
license = licenses.agpl3;
|
|
|
|
platforms = platforms.linux;
|
2017-02-25 23:05:04 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-03-25 23:17:17 +01:00
|
|
|
};
|
|
|
|
}
|