add moondancer firmware

This commit is contained in:
Robin Appelman 2024-07-09 19:45:25 +02:00
commit 4beacc0c7c
6 changed files with 575 additions and 5 deletions

View file

@ -0,0 +1,14 @@
{stdenvNoCC, ...}:
# use binary downloaded from pip untill cross-compiling can be figured out
stdenvNoCC.mkDerivation {
pname = "cynthion-moondancer";
version = "0.1.0";
dontBuild = true;
dontFixup = true;
dontUnpack = true;
installPhase = ''
mkdir -p $out/share/assets
cp ${./moondancer.bin} $out/share/assets/moondancer.bin
'';
}