2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, python3Packages }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
self = {
|
|
|
|
|
|
|
|
octoprint = stdenv.mkDerivation rec {
|
|
|
|
pname = "Cura-OctoPrintPlugin";
|
2021-04-05 15:23:46 +00:00
|
|
|
version = "3.5.18";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fieldOfView";
|
|
|
|
repo = pname;
|
2021-04-05 15:23:46 +00:00
|
|
|
rev = "7bd73946fbf22d18337dc900a81a011ece26bee0";
|
|
|
|
sha256 = "057b2f5f49p96lkh2wsr9w6yh2003x4a85irqsgbzp6igmk8imdn";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
netifaces
|
|
|
|
];
|
|
|
|
|
2020-05-15 21:57:56 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/lib/cura/plugins/OctoPrintPlugin
|
|
|
|
cp -rv . $out/lib/cura/plugins/OctoPrintPlugin/
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Enables printing directly to OctoPrint and monitoring the process";
|
|
|
|
homepage = "https://github.com/fieldOfView/Cura-OctoPrintPlugin";
|
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = with maintainers; [ gebner ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
in self
|