22 lines
380 B
Nix
22 lines
380 B
Nix
{
|
|
stdenvNoCC,
|
|
balatro,
|
|
balatromobile,
|
|
extraArguments ? "",
|
|
}:
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "balatro-android";
|
|
version = balatro.version;
|
|
|
|
dontUnpack = true;
|
|
|
|
buildPhase = ''
|
|
${balatromobile}/bin/balatromobile android ${extraArguments} ${balatro}/share/Balatro
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share
|
|
install balatro*.apk $out/share
|
|
'';
|
|
}
|