Unverified Commit 48384b97 authored by Bernardo Meurer's avatar Bernardo Meurer
Browse files

klipper-firmware: only install relevant files

There's no reason for us to install everything in `out/` when all that
is really used are the firmware binary (`klipper.{bin,elf}`) and the
config file
parent 6e500cb1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -46,7 +46,8 @@
  installPhase = ''
    mkdir -p $out
    cp ./.config $out/config
    cp -r out/* $out
    cp out/klipper.bin $out/ || true
    cp out/klipper.elf $out/ || true
  '';

  dontFixup = true;