about summary refs log tree commit diff
path: root/pkgs/development/androidndk-pkgs/default.nix
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2022-06-29 18:24:19 +0900
committerJari Vetoniemi <mailroxas@gmail.com>2022-06-29 18:27:16 +0900
commit5f1923d67e1ecdc2176f017d7d2008aa1c908baf (patch)
tree76d4fecf0ec91e67ea289baae1e8b41d280197a1 /pkgs/development/androidndk-pkgs/default.nix
parent72f17cca89ec773e5845f5fa1bffcf0b7a4e2094 (diff)
androidenv: fix android cross-compilers
These were completely broken. Even if they managed to output a binary,
it wouldn't actually run on the actual device.
Diffstat (limited to 'pkgs/development/androidndk-pkgs/default.nix')
-rw-r--r--pkgs/development/androidndk-pkgs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/androidndk-pkgs/default.nix b/pkgs/development/androidndk-pkgs/default.nix
index 5f71304d38555..1648a918b87bc 100644
--- a/pkgs/development/androidndk-pkgs/default.nix
+++ b/pkgs/development/androidndk-pkgs/default.nix
@@ -19,7 +19,7 @@
     import ./androidndk-pkgs.nix {
       inherit lib;
       inherit (buildPackages)
-        makeWrapper;
+        makeWrapper python autoPatchelfHook;
       inherit (pkgs)
         stdenv
         runCommand wrapBintoolsWith wrapCCWith;
@@ -49,7 +49,7 @@
     import ./androidndk-pkgs.nix {
       inherit lib;
       inherit (buildPackages)
-        makeWrapper;
+        makeWrapper python autoPatchelfHook;
       inherit (pkgs)
         stdenv
         runCommand wrapBintoolsWith wrapCCWith;