2017-05-17 19:26:11 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, python3, qtbase, curaengine }:
|
2017-02-25 22:05:04 +00:00
|
|
|
|
2017-05-17 19:26:11 +00:00
|
|
|
mkDerivation rec {
|
2014-09-26 10:12:14 +00:00
|
|
|
name = "cura-${version}";
|
2017-07-27 12:51:00 +00:00
|
|
|
version = "2.6.1";
|
2014-03-25 22:17:17 +00:00
|
|
|
|
2017-02-25 22:05:04 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Ultimaker";
|
|
|
|
repo = "Cura";
|
|
|
|
rev = version;
|
2017-07-27 12:51:00 +00:00
|
|
|
sha256 = "03rsw6nafg3y9if2dlnzsj6c9x3x7cv6gs4a1w84jaq4p1f8fcsd";
|
2014-03-25 22:17:17 +00:00
|
|
|
};
|
|
|
|
|
2017-02-25 22:05:04 +00:00
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [ uranium zeroconf pyserial ];
|
2017-05-17 19:26:11 +00:00
|
|
|
nativeBuildInputs = [ cmake python3.pkgs.wrapPython ];
|
2014-03-25 22:17:17 +00:00
|
|
|
|
2017-07-27 12:51:00 +00:00
|
|
|
cmakeFlags = [ "-DURANIUM_DIR=${python3.pkgs.uranium.src}" ];
|
2014-03-25 22:17:17 +00:00
|
|
|
|
2017-02-25 22:05:04 +00: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 22:17:17 +00:00
|
|
|
|
2017-02-25 22:05:04 +00:00
|
|
|
postFixup = ''
|
2014-03-25 22:17:17 +00:00
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
|
|
|
|
2017-05-17 19:26:11 +00:00
|
|
|
meta = with lib; {
|
2017-02-25 22:05:04 +00:00
|
|
|
description = "3D printer / slicing GUI built on top of the Uranium framework";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://github.com/Ultimaker/Cura;
|
2014-03-25 22:17:17 +00:00
|
|
|
license = licenses.agpl3;
|
|
|
|
platforms = platforms.linux;
|
2017-02-25 22:05:04 +00:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-03-25 22:17:17 +00:00
|
|
|
};
|
|
|
|
}
|