mirror of
https://github.com/icewind1991/cynthion-flake.git
synced 2026-06-03 14:24:07 +02:00
14 lines
355 B
Nix
14 lines
355 B
Nix
{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
|
|
'';
|
|
}
|