mirror of
https://github.com/icewind1991/cynthion-flake.git
synced 2026-06-03 22:34:06 +02:00
add moondancer firmware
This commit is contained in:
parent
37b2e28862
commit
4beacc0c7c
6 changed files with 575 additions and 5 deletions
14
pkgs/cynthion/moondancer-bin.nix
Normal file
14
pkgs/cynthion/moondancer-bin.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue