2020-09-28 22:13:00 +03:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
2022-06-27 14:54:03 +03:00
|
|
|
, python3
|
2021-02-01 05:54:39 +03:00
|
|
|
, unstableGitUpdater
|
2023-05-14 19:56:38 +03:00
|
|
|
, makeWrapper
|
2020-09-28 22:13:00 +03:00
|
|
|
}:
|
2022-09-20 14:51:27 +03:00
|
|
|
|
2020-09-28 22:13:00 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2021-07-19 07:34:45 +03:00
|
|
|
pname = "klipper";
|
2024-04-19 21:45:32 +03:00
|
|
|
version = "unstable-2024-04-15";
|
2020-09-28 22:13:00 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KevinOConnor";
|
|
|
|
repo = "klipper";
|
2024-04-19 21:45:32 +03:00
|
|
|
rev = "2425a74638baa87efef3ca02253804d126101c8a";
|
|
|
|
sha256 = "sha256-ZGsMv4+Nv2G2bHRI5Vm1Uj+Uj6zee4oAVDMLrVrwurU=";
|
2020-09-28 22:13:00 +03:00
|
|
|
};
|
|
|
|
|
2023-07-25 16:27:31 +03:00
|
|
|
sourceRoot = "${src.name}/klippy";
|
2020-09-28 22:13:00 +03:00
|
|
|
|
|
|
|
# NB: This is needed for the postBuild step
|
2023-05-14 19:56:38 +03:00
|
|
|
nativeBuildInputs = [
|
|
|
|
(python3.withPackages ( p: with p; [ cffi ] ))
|
|
|
|
makeWrapper
|
|
|
|
];
|
2020-09-28 22:13:00 +03:00
|
|
|
|
2023-06-22 18:34:44 +03:00
|
|
|
buildInputs = [ (python3.withPackages (p: with p; [ can cffi pyserial greenlet jinja2 markupsafe numpy ])) ];
|
2020-09-28 22:13:00 +03:00
|
|
|
|
|
|
|
# we need to run this to prebuild the chelper.
|
2022-09-20 14:51:27 +03:00
|
|
|
postBuild = ''
|
|
|
|
python ./chelper/__init__.py
|
|
|
|
'';
|
2022-06-27 14:54:03 +03:00
|
|
|
|
2022-09-20 14:51:27 +03:00
|
|
|
# Python 3 is already supported but shebangs aren't updated yet
|
|
|
|
postPatch = ''
|
|
|
|
for file in klippy.py console.py parsedump.py; do
|
|
|
|
substituteInPlace $file \
|
2022-06-27 14:54:03 +03:00
|
|
|
--replace '/usr/bin/env python2' '/usr/bin/env python'
|
|
|
|
done
|
2023-09-08 14:53:37 +03:00
|
|
|
|
|
|
|
# needed for cross compilation
|
|
|
|
substituteInPlace ./chelper/__init__.py \
|
|
|
|
--replace 'GCC_CMD = "gcc"' 'GCC_CMD = "${stdenv.cc.targetPrefix}cc"'
|
2022-06-27 14:54:03 +03:00
|
|
|
'';
|
2020-09-28 22:13:00 +03:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2022-03-23 01:35:38 +03:00
|
|
|
# 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
|
|
|
|
|
2023-05-14 19:56:38 +03:00
|
|
|
mkdir -p $out/bin
|
2020-09-28 22:13:00 +03:00
|
|
|
chmod 755 $out/lib/klipper/klippy.py
|
2023-05-14 19:56:38 +03:00
|
|
|
makeWrapper $out/lib/klipper/klippy.py $out/bin/klippy --chdir $out/lib/klipper
|
2020-09-28 22:13:00 +03:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2021-02-01 05:54:39 +03:00
|
|
|
passthru.updateScript = unstableGitUpdater { url = meta.homepage; };
|
|
|
|
|
2020-09-28 22:13:00 +03:00
|
|
|
meta = with lib; {
|
|
|
|
description = "The Klipper 3D printer firmware";
|
2024-03-19 05:14:51 +03:00
|
|
|
mainProgram = "klippy";
|
2020-09-28 22:13:00 +03:00
|
|
|
homepage = "https://github.com/KevinOConnor/klipper";
|
2022-06-27 14:54:03 +03:00
|
|
|
maintainers = with maintainers; [ lovesegfault zhaofengli cab404 ];
|
2020-09-28 22:13:00 +03:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
};
|
|
|
|
}
|