fix: link BLHeliSuite32 music directory
This commit is contained in:
parent
049b93b575
commit
eab49656ee
|
@ -4,16 +4,18 @@
|
||||||
, buildFHSUserEnv }: let
|
, buildFHSUserEnv }: let
|
||||||
name = "BLHeliSuite32";
|
name = "BLHeliSuite32";
|
||||||
pname = "blhelisuite32";
|
pname = "blhelisuite32";
|
||||||
|
workdir = "/tmp/${pname}";
|
||||||
version = "32.10";
|
version = "32.10";
|
||||||
|
|
||||||
dist = fetchzip {
|
dist = fetchzip {
|
||||||
name = "${pname}-dist";
|
name = "${pname}-dist";
|
||||||
url = "https://github.com/bitdump/BLHeli/releases/download/Rev${version}/${name}xLinux64_1044.zip";
|
url = "https://github.com/bitdump/BLHeli/releases/download/Rev${version}/${name}xLinux64_1044.zip";
|
||||||
hash = "sha256-7BuB/Mn5W8oOKePindxiOwPqCo2M67JEBHzD/CiQWAc=";
|
hash = "sha256-lempCne+Sf/38WHfJHRdL6MspSpi+UhpZNFcsPgI0jw=";
|
||||||
|
|
||||||
postFetch = ''
|
postFetch = ''
|
||||||
# BLHeliSuite32 tries to write next to its binary
|
# BLHeliSuite32 tries to write next to its binary
|
||||||
ln -s /tmp/${pname}_settings $out/Settings
|
ln -s ${workdir}/settings $out/Settings
|
||||||
|
ln -s ${workdir}/music $out/Music
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
in buildFHSUserEnv {
|
in buildFHSUserEnv {
|
||||||
|
@ -24,5 +26,8 @@ in buildFHSUserEnv {
|
||||||
zlib systemdLibs
|
zlib systemdLibs
|
||||||
]);
|
]);
|
||||||
|
|
||||||
runScript = "sh -c 'mkdir -p /tmp/blhelisuite32_settings && exec ${dist}/${name}xl'";
|
runScript = "sh -c '" +
|
||||||
|
"mkdir -p ${workdir}/settings && " +
|
||||||
|
"mkdir -p ${workdir}/music && " +
|
||||||
|
"exec ${dist}/${name}xl'";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue