2019-09-26 05:13:19 +01:00
|
|
|
{ lib, mkDerivation, wrapQtAppsHook, callPackage, fetchgit, cmake, jq, python3, qtbase, qtquickcontrols2 }:
|
2015-08-31 21:42:05 +01:00
|
|
|
|
|
|
|
let
|
2019-05-06 00:31:51 +01:00
|
|
|
# admittedly, we're using (printer firmware) blobs when we could compile them ourselves.
|
|
|
|
curaBinaryDataVersion = "3.6.18"; # Marlin v2.0.0.144. Keep this accurate wrt. the below.
|
|
|
|
curaBinaryData = fetchgit {
|
|
|
|
url = https://code.alephobjects.com/diffusion/CBD/cura-binary-data.git;
|
|
|
|
rev = "cdc046494bbfe1f65bfb34659a257eef9a0100a0";
|
|
|
|
sha256 = "0v0s036gxdjiglas2yzw95alv60sw3pq5k1zrrhmw9mxr4irrblb";
|
|
|
|
};
|
2019-08-04 21:43:32 +01:00
|
|
|
|
|
|
|
libarcusLulzbot = callPackage ./libarcus.nix {
|
2019-09-26 05:13:19 +01:00
|
|
|
inherit (python3.pkgs) buildPythonPackage sip pythonOlder;
|
2019-08-04 21:43:32 +01:00
|
|
|
};
|
|
|
|
libsavitarLulzbot = callPackage ./libsavitar.nix {
|
2019-09-26 05:13:19 +01:00
|
|
|
inherit (python3.pkgs) buildPythonPackage sip pythonOlder;
|
2019-08-04 21:43:32 +01:00
|
|
|
};
|
|
|
|
|
2019-09-26 05:13:19 +01:00
|
|
|
inherit (python3.pkgs) buildPythonPackage pyqt5 numpy scipy shapely pythonOlder;
|
2019-08-04 21:43:32 +01:00
|
|
|
curaengine = callPackage ./curaengine.nix {
|
|
|
|
inherit libarcusLulzbot;
|
|
|
|
};
|
|
|
|
uraniumLulzbot = callPackage ./uranium.nix {
|
|
|
|
inherit callPackage libarcusLulzbot;
|
2019-09-26 05:13:19 +01:00
|
|
|
inherit (python3.pkgs) buildPythonPackage pyqt5 numpy scipy shapely pythonOlder;
|
2019-08-04 21:43:32 +01:00
|
|
|
};
|
2015-08-31 21:42:05 +01:00
|
|
|
in
|
2019-09-26 05:13:19 +01:00
|
|
|
mkDerivation rec {
|
|
|
|
pname = "cura-lulzbot";
|
2019-09-26 01:19:53 +01:00
|
|
|
version = "3.6.20";
|
2015-08-31 21:42:05 +01:00
|
|
|
|
2019-05-06 00:31:51 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = https://code.alephobjects.com/source/cura-lulzbot.git;
|
2019-09-26 01:19:53 +01:00
|
|
|
rev = "df5f905482114194eb1cfb85a7aed851b4a6d32a";
|
|
|
|
sha256 = "1xkqf89anxmy2aw0vr604ln7qsibacgk9l2g8jlf467hja8f0dzq";
|
2019-05-06 00:31:51 +01:00
|
|
|
};
|
2015-08-31 21:42:05 +01:00
|
|
|
|
2019-05-06 00:31:51 +01:00
|
|
|
buildInputs = [ qtbase qtquickcontrols2 ];
|
|
|
|
# numpy-stl temporarily disabled due to https://code.alephobjects.com/T8415
|
2019-09-26 05:13:19 +01:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [ pyserial requests zeroconf ] ++ [ libsavitarLulzbot uraniumLulzbot libarcusLulzbot ]; # numpy-stl
|
|
|
|
nativeBuildInputs = [ cmake python3.pkgs.wrapPython ];
|
2015-08-31 21:42:05 +01:00
|
|
|
|
2019-05-06 00:31:51 +01:00
|
|
|
cmakeFlags = [
|
2019-08-04 21:43:32 +01:00
|
|
|
"-DURANIUM_DIR=${uraniumLulzbot.src}"
|
2019-05-06 00:31:51 +01:00
|
|
|
"-DCURA_VERSION=${version}"
|
|
|
|
];
|
2015-08-31 21:42:05 +01:00
|
|
|
|
2019-05-06 00:31:51 +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
|
2015-08-31 21:42:05 +01:00
|
|
|
'';
|
|
|
|
|
2019-05-06 00:31:51 +01:00
|
|
|
preFixup = ''
|
|
|
|
substituteInPlace "$out/bin/cura-lulzbot" --replace 'import cura.CuraApplication' 'import Savitar; import cura.CuraApplication'
|
|
|
|
ln -sT "${curaBinaryData}/cura/resources/firmware" "$out/share/cura/resources/firmware"
|
2019-08-04 21:43:32 +01:00
|
|
|
ln -sT "${uraniumLulzbot}/share/uranium" "$out/share/uranium"
|
2019-05-06 00:31:51 +01:00
|
|
|
${jq}/bin/jq --arg out "$out" '.build=$out' >"$out/version.json" <<'EOF'
|
|
|
|
${builtins.toJSON {
|
|
|
|
cura = version;
|
|
|
|
cura_version = version;
|
|
|
|
binarydata = curaBinaryDataVersion;
|
|
|
|
engine = curaengine.version;
|
2019-08-04 21:43:32 +01:00
|
|
|
libarcus = libarcusLulzbot.version;
|
|
|
|
libsavitar = libsavitarLulzbot.version;
|
|
|
|
uranium = uraniumLulzbot.version;
|
2019-05-06 00:31:51 +01:00
|
|
|
}}
|
|
|
|
EOF
|
|
|
|
'';
|
2015-08-31 21:42:05 +01:00
|
|
|
|
2019-09-26 05:13:19 +01:00
|
|
|
postFixup = ''
|
|
|
|
wrapPythonPrograms
|
|
|
|
wrapQtApp "$out/bin/cura-lulzbot"
|
|
|
|
'';
|
|
|
|
|
2019-05-06 00:31:51 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "3D printer / slicing GUI built on top of the Uranium framework";
|
|
|
|
homepage = https://code.alephobjects.com/diffusion/CURA/;
|
|
|
|
license = licenses.agpl3; # a partial relicense to LGPL has happened, but not certain that all AGPL bits are expunged
|
2015-08-31 21:42:05 +01:00
|
|
|
platforms = platforms.linux;
|
2019-05-06 00:31:51 +01:00
|
|
|
maintainers = with maintainers; [ chaduffy ];
|
2015-08-31 21:42:05 +01:00
|
|
|
};
|
|
|
|
}
|