blob: 6d89de28244cfd715dc04bf97ca5290855f0893a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
deployAndroidPackage,
lib,
package,
os,
arch,
autoPatchelfHook,
stdenv,
}:
deployAndroidPackage {
inherit package os arch;
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ autoPatchelfHook ];
patchInstructions = lib.optionalString (os == "linux") ''
autoPatchelf $packageBaseDir/bin
'';
}
|