Skip to content

Commit

Permalink
curaPlugins.octoprint: 3.5.11 -> 3.5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
gebner committed May 10, 2020
1 parent bc56fe5 commit af23882
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pkgs/applications/misc/cura/plugins.nix
@@ -1,26 +1,29 @@
{ stdenv, fetchFromGitHub, fetchpatch, cmake, python3Packages }:
{ stdenv, fetchFromGitHub, fetchpatch, python3Packages }:

let

self = {

octoprint = stdenv.mkDerivation rec {
pname = "Cura-OctoPrintPlugin";
version = "3.5.11";
version = "3.5.12";

src = fetchFromGitHub {
owner = "fieldOfView";
repo = pname;
rev = "3cef0a955ae7ccfa5c07d20d9d147c530cc9d6ec";
sha256 = "0q9bkwgpsbfwkp1bfaxq3wm9pbwx5d7ji0jr7cwc4y5nizji81is";
rev = "ad522c0b7ead5fbe28da686a3cc75e351274c2bc";
sha256 = "0ln11ng32bh0smfsk54mv2j3sadh0gwf031nmm95zrvbj9cr6yc0";
};

nativeBuildInputs = [ cmake ];

propagatedBuildInputs = with python3Packages; [
netifaces
];

installPhase = ''
mkdir -p $out/lib/cura/plugins/OctoPrintPlugin
cp -rv . $out/lib/cura/plugins/OctoPrintPlugin/
'';

meta = with stdenv.lib; {
description = "Enables printing directly to OctoPrint and monitoring the process";
homepage = "https://github.com/fieldOfView/Cura-OctoPrintPlugin";
Expand Down

0 comments on commit af23882

Please sign in to comment.