summary refs log tree commit diff
path: root/pkgs/servers/klipper
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2020-09-28 12:13:00 -0700
committerBernardo Meurer <bernardo@meurer.org>2020-10-11 15:55:50 -0700
commit85c15c4ccbd9f3b2ef1841cb2cfb476d0650bfed (patch)
tree43785cf7931b85a93ba9550ed1e87dd76ddae1b7 /pkgs/servers/klipper
parent8d3a7d922261d1f6570a543457ee09443a77397a (diff)
downloadnixpkgs-85c15c4ccbd9f3b2ef1841cb2cfb476d0650bfed.tar
nixpkgs-85c15c4ccbd9f3b2ef1841cb2cfb476d0650bfed.tar.gz
nixpkgs-85c15c4ccbd9f3b2ef1841cb2cfb476d0650bfed.tar.bz2
nixpkgs-85c15c4ccbd9f3b2ef1841cb2cfb476d0650bfed.tar.lz
nixpkgs-85c15c4ccbd9f3b2ef1841cb2cfb476d0650bfed.tar.xz
nixpkgs-85c15c4ccbd9f3b2ef1841cb2cfb476d0650bfed.tar.zst
nixpkgs-85c15c4ccbd9f3b2ef1841cb2cfb476d0650bfed.zip
klipper: init at 0.8.0
Diffstat (limited to 'pkgs/servers/klipper')
-rw-r--r--pkgs/servers/klipper/default.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/servers/klipper/default.nix b/pkgs/servers/klipper/default.nix
new file mode 100644
index 00000000000..0b4fa745460
--- /dev/null
+++ b/pkgs/servers/klipper/default.nix
@@ -0,0 +1,49 @@
+{ stdenv
+, lib
+, fetchFromGitHub
+, python2
+}:
+stdenv.mkDerivation rec {
+  name = "klipper";
+  version = "0.8.0";
+
+  src = fetchFromGitHub {
+    owner = "KevinOConnor";
+    repo = "klipper";
+    rev = "v${version}";
+    sha256 = "1ijy2ij9yii5hms10914i614wkjpsy0k4rbgnm6l594gphivdfm7";
+  };
+
+  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 ])) ];
+
+  # 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
+
+    chmod 755 $out/lib/klipper/klippy.py
+    runHook postInstall
+  '';
+
+  meta = with lib; {
+    description = "The Klipper 3D printer firmware";
+    homepage = "https://github.com/KevinOConnor/klipper";
+    maintainers = with maintainers; [ lovesegfault ];
+    platforms = platforms.linux;
+    license = licenses.gpl3Only;
+  };
+}