mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
215204e8d9
* maintainers: add saturn745 * klipperscreen: 0.3.2 -> 0.4.3 --------- Co-authored-by: Saturn745 <codeberg.sw1mx@slmail.me>
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
, wrapGAppsHook3
|
|
, gobject-introspection
|
|
, gitUpdater
|
|
}: python3.pkgs.buildPythonApplication rec {
|
|
pname = "KlipperScreen";
|
|
version = "0.4.3";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jordanruthe";
|
|
repo = "KlipperScreen";
|
|
rev = "v${version}";
|
|
hash = "sha256-6hMefH9VcNnWhKdQRs7cPVL86LEDRSLaxygmi15HdLI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
pythonPath = with python3.pkgs; [
|
|
jinja2
|
|
netifaces
|
|
requests
|
|
websocket-client
|
|
pycairo
|
|
pygobject3
|
|
mpv
|
|
six
|
|
dbus-python
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
|
|
preFixup = ''
|
|
mkdir -p $out/bin
|
|
cp -r . $out/dist
|
|
gappsWrapperArgs+=(--set PYTHONPATH "$PYTHONPATH")
|
|
wrapGApp $out/dist/screen.py
|
|
ln -s $out/dist/screen.py $out/bin/KlipperScreen
|
|
'';
|
|
|
|
passthru.updateScript = gitUpdater { url = meta.homepage; };
|
|
|
|
meta = with lib; {
|
|
description = "Touchscreen GUI for the Klipper 3D printer firmware";
|
|
homepage = "https://github.com/jordanruthe/KlipperScreen";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ cab404 saturn745 ];
|
|
mainProgram = "KlipperScreen";
|
|
};
|
|
}
|