nixpkgs/pkgs/servers/klipper/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.9 KiB
Nix
Raw Normal View History

2020-09-28 19:13:00 +00:00
{ stdenv
, lib
, fetchFromGitHub
, python3
2021-02-01 02:54:39 +00:00
, unstableGitUpdater
2020-09-28 19:13:00 +00:00
}:
stdenv.mkDerivation rec {
pname = "klipper";
version = "unstable-2022-06-18";
2020-09-28 19:13:00 +00:00
src = fetchFromGitHub {
owner = "KevinOConnor";
repo = "klipper";
rev = "d3c4ba4839dd7a4339ae024752e6c6424884c185";
sha256 = "sha256-2Fq56JIk5qcKpWffz1k/EJ+xYAnUpuxvCryq88l//8E=";
2020-09-28 19:13:00 +00:00
};
sourceRoot = "source/klippy";
# NB: This is needed for the postBuild step
nativeBuildInputs = [ (python3.withPackages ( p: with p; [ cffi ] )) ];
2020-09-28 19:13:00 +00:00
buildInputs = [ (python3.withPackages (p: with p; [ cffi pyserial greenlet jinja2 markupsafe ])) ];
2020-09-28 19:13:00 +00:00
# we need to run this to prebuild the chelper.
postBuild = "python ./chelper/__init__.py";
# 2022-06-28: Python 3 is already supported in klipper, alas shebangs remained
# the same - we replace them in patchPhase.
patchPhase = ''
for F in klippy.py console.py parsedump.py; do
substituteInPlace $F \
--replace '/usr/bin/env python2' '/usr/bin/env python'
done
'';
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
# 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
2020-09-28 19:13:00 +00:00
chmod 755 $out/lib/klipper/klippy.py
runHook postInstall
'';
2021-02-01 02:54:39 +00:00
passthru.updateScript = unstableGitUpdater { url = meta.homepage; };
2020-09-28 19:13:00 +00:00
meta = with lib; {
description = "The Klipper 3D printer firmware";
homepage = "https://github.com/KevinOConnor/klipper";
maintainers = with maintainers; [ lovesegfault zhaofengli cab404 ];
2020-09-28 19:13:00 +00:00
platforms = platforms.linux;
license = licenses.gpl3Only;
};
}