dc14ca1a80
klipper: unstable-2022-03-11 -> unstable-2022-03-14
58 lines
1.8 KiB
Nix
58 lines
1.8 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, python2
|
|
, unstableGitUpdater
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "klipper";
|
|
version = "unstable-2022-03-14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KevinOConnor";
|
|
repo = "klipper";
|
|
rev = "30098db22a43274ceb87e078e603889f403a35c4";
|
|
sha256 = "sha256-ORpXBFGPY6A/HEYX9Hhwb3wP2KcAE+z3pTxf6j7CwGg=";
|
|
};
|
|
|
|
sourceRoot = "source/klippy";
|
|
|
|
# there is currently an attempt at moving it to Python 3, but it will remain
|
|
# Python 2 for the foreseeable future.
|
|
# c.f. https://github.com/KevinOConnor/klipper/pull/3278
|
|
# NB: This is needed for the postBuild step
|
|
nativeBuildInputs = [ (python2.withPackages ( p: with p; [ cffi ] )) ];
|
|
|
|
buildInputs = [ (python2.withPackages (p: with p; [ cffi pyserial greenlet jinja2 numpy ])) ];
|
|
|
|
# we need to run this to prebuild the chelper.
|
|
postBuild = "python2 ./chelper/__init__.py";
|
|
|
|
# NB: We don't move the main entry point into `/bin`, or even symlink it,
|
|
# because it uses relative paths to find necessary modules. We could wrap but
|
|
# this is used 99% of the time as a service, so it's not worth the effort.
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/lib/klipper
|
|
cp -r ./* $out/lib/klipper
|
|
|
|
# Moonraker expects `config_examples` and `docs` to be available
|
|
# under `klipper_path`
|
|
cp -r $src/docs $out/lib/docs
|
|
cp -r $src/config $out/lib/config
|
|
|
|
chmod 755 $out/lib/klipper/klippy.py
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = unstableGitUpdater { url = meta.homepage; };
|
|
|
|
meta = with lib; {
|
|
description = "The Klipper 3D printer firmware";
|
|
homepage = "https://github.com/KevinOConnor/klipper";
|
|
maintainers = with maintainers; [ lovesegfault zhaofengli ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3Only;
|
|
};
|
|
}
|