2020-09-28 19:13:00 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
2022-06-27 11:54:03 +00:00
|
|
|
, python3
|
2021-02-01 02:54:39 +00:00
|
|
|
, unstableGitUpdater
|
2023-05-14 16:56:38 +00:00
|
|
|
, makeWrapper
|
2024-09-27 21:43:26 +00:00
|
|
|
, writeShellScript
|
2020-09-28 19:13:00 +00:00
|
|
|
}:
|
2022-09-20 11:51:27 +00:00
|
|
|
|
2020-09-28 19:13:00 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-07-19 04:34:45 +00:00
|
|
|
pname = "klipper";
|
2024-10-27 05:47:10 +00:00
|
|
|
version = "0.12.0-unstable-2024-10-26";
|
2020-09-28 19:13:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KevinOConnor";
|
|
|
|
repo = "klipper";
|
2024-10-27 05:47:10 +00:00
|
|
|
rev = "31fe50ffa387ed4a45950c1043a3b214a9d554dd";
|
|
|
|
sha256 = "sha256-szGAQ5ttT1Y0q3pf6m9xNHreNjdmdWU8k0hwcT/6MDA=";
|
2020-09-28 19:13:00 +00:00
|
|
|
};
|
|
|
|
|
2023-07-25 13:27:31 +00:00
|
|
|
sourceRoot = "${src.name}/klippy";
|
2020-09-28 19:13:00 +00:00
|
|
|
|
|
|
|
# NB: This is needed for the postBuild step
|
2023-05-14 16:56:38 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
(python3.withPackages ( p: with p; [ cffi ] ))
|
|
|
|
makeWrapper
|
|
|
|
];
|
2020-09-28 19:13:00 +00:00
|
|
|
|
2024-08-12 02:46:21 +00:00
|
|
|
buildInputs = [ (python3.withPackages (p: with p; [ python-can cffi pyserial greenlet jinja2 markupsafe numpy ])) ];
|
2020-09-28 19:13:00 +00:00
|
|
|
|
|
|
|
# we need to run this to prebuild the chelper.
|
2022-09-20 11:51:27 +00:00
|
|
|
postBuild = ''
|
|
|
|
python ./chelper/__init__.py
|
|
|
|
'';
|
2022-06-27 11:54:03 +00:00
|
|
|
|
2022-09-20 11:51:27 +00: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 11:54:03 +00:00
|
|
|
--replace '/usr/bin/env python2' '/usr/bin/env python'
|
|
|
|
done
|
2023-09-08 11:53:37 +00:00
|
|
|
|
|
|
|
# needed for cross compilation
|
|
|
|
substituteInPlace ./chelper/__init__.py \
|
|
|
|
--replace 'GCC_CMD = "gcc"' 'GCC_CMD = "${stdenv.cc.targetPrefix}cc"'
|
2022-06-27 11:54:03 +00:00
|
|
|
'';
|
2020-09-28 19:13:00 +00:00
|
|
|
|
2024-09-27 21:43:26 +00:00
|
|
|
pythonInterpreter =
|
|
|
|
(python3.withPackages (
|
|
|
|
p: with p; [
|
|
|
|
numpy
|
|
|
|
matplotlib
|
|
|
|
]
|
|
|
|
)).interpreter;
|
|
|
|
|
|
|
|
pythonScriptWrapper = writeShellScript pname ''
|
|
|
|
${pythonInterpreter} "@out@/lib/scripts/@script@" "$@"
|
|
|
|
'';
|
|
|
|
|
2020-09-28 19:13:00 +00: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-22 22:35:38 +00: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
|
2024-09-27 21:43:26 +00:00
|
|
|
cp -r $src/scripts $out/lib/scripts
|
|
|
|
cp -r $src/klippy $out/lib/klippy
|
2022-03-22 22:35:38 +00:00
|
|
|
|
2024-07-25 14:06:40 +00:00
|
|
|
# Add version information. For the normal procedure see https://www.klipper3d.org/Packaging.html#versioning
|
|
|
|
# This is done like this because scripts/make_version.py is not available when sourceRoot is set to "${src.name}/klippy"
|
|
|
|
echo "${version}-NixOS" > $out/lib/klipper/.version
|
|
|
|
|
2023-05-14 16:56:38 +00:00
|
|
|
mkdir -p $out/bin
|
2020-09-28 19:13:00 +00:00
|
|
|
chmod 755 $out/lib/klipper/klippy.py
|
2023-05-14 16:56:38 +00:00
|
|
|
makeWrapper $out/lib/klipper/klippy.py $out/bin/klippy --chdir $out/lib/klipper
|
2024-09-27 21:43:26 +00:00
|
|
|
|
|
|
|
substitute "$pythonScriptWrapper" "$out/bin/klipper-calibrate-shaper" \
|
|
|
|
--subst-var "out" \
|
|
|
|
--subst-var-by "script" "calibrate_shaper.py"
|
|
|
|
chmod 755 "$out/bin/klipper-calibrate-shaper"
|
|
|
|
|
2020-09-28 19:13:00 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2024-02-07 17:06:57 +00:00
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
|
|
url = meta.homepage;
|
|
|
|
tagPrefix = "v";
|
|
|
|
};
|
2021-02-01 02:54:39 +00:00
|
|
|
|
2020-09-28 19:13:00 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Klipper 3D printer firmware";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "klippy";
|
2020-09-28 19:13:00 +00:00
|
|
|
homepage = "https://github.com/KevinOConnor/klipper";
|
2022-06-27 11:54:03 +00:00
|
|
|
maintainers = with maintainers; [ lovesegfault zhaofengli cab404 ];
|
2020-09-28 19:13:00 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
};
|
|
|
|
}
|