mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
feat(octoprint): octorant
This commit is contained in:
parent
2c9219ba87
commit
8b5b40ac0a
3 changed files with 27 additions and 1 deletions
24
packages/octoprint/octorant.nix
Normal file
24
packages/octoprint/octorant.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ buildPlugin
|
||||
, python3Packages
|
||||
, fetchFromGitHub
|
||||
}: let
|
||||
version = "1.3.4";
|
||||
in buildPlugin {
|
||||
pname = "OctoPrint-Octorant";
|
||||
inherit version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bchanudet";
|
||||
repo = "OctoPrint-Octorant";
|
||||
rev = version;
|
||||
sha256 = "sha256-gP79zlJ8gdtpddXOJIMhouSbwXnrSf+c1bURkN/7jvw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
pillow
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/bchanudet/OctoPrint-Octorant";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue