2017-03-24 12:35:34 +00:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, octoprint, pythonPackages }:
|
2016-02-17 12:51:20 +00:00
|
|
|
|
|
|
|
let
|
2016-02-19 12:12:11 +00:00
|
|
|
buildPlugin = args: pythonPackages.buildPythonApplication (args // {
|
2016-02-17 12:51:20 +00:00
|
|
|
buildInputs = (args.buildInputs or []) ++ [ octoprint ];
|
|
|
|
});
|
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
self = {
|
2016-02-17 12:51:20 +00:00
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
# Deprecated alias
|
|
|
|
m3d-fio = self.m33-fio; # added 2016-08-13
|
2016-02-17 12:51:20 +00:00
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
m33-fio = buildPlugin rec {
|
|
|
|
name = "M33-Fio-${version}";
|
2017-07-27 13:51:25 +01:00
|
|
|
version = "1.20";
|
2016-02-17 12:51:20 +00:00
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "donovan6000";
|
|
|
|
repo = "M33-Fio";
|
|
|
|
rev = "V${version}";
|
2017-07-27 13:51:25 +01:00
|
|
|
sha256 = "1ng7lzlkqsjcr1w7wgzwsqkkvcvpajcj2cwqlffh95916sw8n767";
|
2016-08-13 01:04:10 +01:00
|
|
|
};
|
2016-02-17 13:43:44 +00:00
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
patches = [
|
|
|
|
./m33-fio-one-library.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
rm -rf octoprint_m33fio/static/libraries/*
|
|
|
|
(
|
|
|
|
cd 'shared library source'
|
|
|
|
make
|
|
|
|
)
|
|
|
|
'';
|
2016-02-17 13:43:44 +00:00
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-01-29 17:03:38 +00:00
|
|
|
homepage = "https://github.com/donovan6000/M33-Fio";
|
2016-08-13 01:04:10 +01:00
|
|
|
description = "OctoPrint plugin for the Micro 3D printer";
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
2016-02-17 13:43:44 +00:00
|
|
|
};
|
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
titlestatus = buildPlugin rec {
|
|
|
|
name = "OctoPrint-TitleStatus-${version}";
|
|
|
|
version = "0.0.4";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MoonshineSG";
|
|
|
|
repo = "OctoPrint-TitleStatus";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1l78xrabn5hcly2mgxwi17nwgnp2s6jxi9iy4wnw8k8icv74ag7k";
|
|
|
|
};
|
2016-02-17 13:43:53 +00:00
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://github.com/MoonshineSG/OctoPrint-TitleStatus";
|
|
|
|
description = "Show printers status in window title";
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
2016-02-17 13:43:53 +00:00
|
|
|
};
|
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
stlviewer = buildPlugin rec {
|
|
|
|
name = "OctoPrint-STLViewer-${version}";
|
|
|
|
version = "0.3.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jneilliii";
|
|
|
|
repo = "OctoPrint-STLViewer";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1a6sa8pw9ay7x27pfwr3nzb22x3jaw0c9vwyz4mrj76zkiw6svfi";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://github.com/jneilliii/Octoprint-STLViewer";
|
|
|
|
description = "A simple stl viewer tab for OctoPrint";
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.agpl3;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
2016-02-17 13:43:53 +00:00
|
|
|
};
|
2016-08-13 01:04:10 +01:00
|
|
|
|
2016-02-17 13:43:53 +00:00
|
|
|
};
|
|
|
|
|
2016-08-13 01:04:10 +01:00
|
|
|
in self
|