summary refs log tree commit diff
path: root/pkgs/development/androidndk-pkgs
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-09-23 13:40:45 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-09-23 13:40:45 -0400
commitf089afe96539f90c24cdba9005e689d410a24e93 (patch)
tree41d6ee09701ff30bf91795310ed4cdf930094122 /pkgs/development/androidndk-pkgs
parent85df382f2127f4e06744748ef66bc63b0dc2fd7d (diff)
downloadnixpkgs-f089afe96539f90c24cdba9005e689d410a24e93.tar
nixpkgs-f089afe96539f90c24cdba9005e689d410a24e93.tar.gz
nixpkgs-f089afe96539f90c24cdba9005e689d410a24e93.tar.bz2
nixpkgs-f089afe96539f90c24cdba9005e689d410a24e93.tar.lz
nixpkgs-f089afe96539f90c24cdba9005e689d410a24e93.tar.xz
nixpkgs-f089afe96539f90c24cdba9005e689d410a24e93.tar.zst
nixpkgs-f089afe96539f90c24cdba9005e689d410a24e93.zip
androidndk: get correct libs for x86_64
Diffstat (limited to 'pkgs/development/androidndk-pkgs')
-rw-r--r--pkgs/development/androidndk-pkgs/androidndk-pkgs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/androidndk-pkgs/androidndk-pkgs.nix b/pkgs/development/androidndk-pkgs/androidndk-pkgs.nix
index 02aa6567c1a..6bcfcfc3023 100644
--- a/pkgs/development/androidndk-pkgs/androidndk-pkgs.nix
+++ b/pkgs/development/androidndk-pkgs/androidndk-pkgs.nix
@@ -103,6 +103,6 @@ rec {
     cp -r ${buildAndroidndk}/libexec/android-sdk/ndk-bundle/sysroot/usr/include $out/include
     chmod +w $out/include
     cp -r ${buildAndroidndk}/libexec/android-sdk/ndk-bundle/sysroot/usr/include/${targetInfo.triple}/* $out/include
-    ln -s ${buildAndroidndk}/libexec/android-sdk/ndk-bundle/platforms/android-${stdenv.hostPlatform.sdkVer}/arch-${hostInfo.arch}/usr/lib $out/lib
+    ln -s ${buildAndroidndk}/libexec/android-sdk/ndk-bundle/platforms/android-${stdenv.hostPlatform.sdkVer}/arch-${hostInfo.arch}/usr/${if hostInfo.arch == "x86_64" then "lib64" else "lib"} $out/lib
   '';
 }