2024-09-19 14:19:46 +00:00
|
|
|
{deployAndroidPackage, lib, package, os, autoPatchelfHook, stdenv}:
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
deployAndroidPackage {
|
|
|
|
inherit package os;
|
2024-09-26 11:04:55 +00:00
|
|
|
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ autoPatchelfHook ];
|
2023-02-02 18:25:31 +00:00
|
|
|
patchInstructions = lib.optionalString (os == "linux") ''
|
|
|
|
autoPatchelf $packageBaseDir/bin
|
|
|
|
'';
|
|
|
|
}
|