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
This commit is contained in:
Bernardo Meurer 2023-05-05 23:37:48 -04:00
parent 6e500cb14c
commit 48384b9744
No known key found for this signature in database

View File

@ -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;