Skip to content

Commit

Permalink
octoprint-plugins.m33-fio: fix incompatibility with new OctoPrint
Browse files Browse the repository at this point in the history
  • Loading branch information
abbradar committed Mar 24, 2017
1 parent 64f9673 commit 8c98df0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/applications/misc/octoprint/plugins.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, octoprint, pythonPackages }:
{ stdenv, fetchFromGitHub, fetchpatch, octoprint, pythonPackages }:

let
buildPlugin = args: pythonPackages.buildPythonApplication (args // {
Expand All @@ -23,6 +23,11 @@ let

patches = [
./m33-fio-one-library.patch
# Fix incompatibility with new OctoPrint
(fetchpatch {
url = "https://github.com/foosel/M33-Fio/commit/bdf2422dee3fb8e53b33f087f734956c3b209d72.patch";
sha256 = "0jm415sx6d3m0z4gfhbnxlasg08zf3f3mslaj4amn9wbvsik9s5d";
})
];

postPatch = ''
Expand Down

0 comments on commit 8c98df0

Please sign in to comment.