summary refs log tree commit diff
path: root/pkgs/development/libraries/tachyon
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2018-04-26 16:35:11 +0200
committerTimo Kaufmann <timokau@zoho.com>2018-06-30 01:20:46 +0200
commit4655b8776d351456ffc343ebc84575e58803a539 (patch)
treec915a0b80a8e8f20e7cd90c5cbed4088f3958ef6 /pkgs/development/libraries/tachyon
parentb7a6689d6f6e5a56398d6eb53a29dec4f6551526 (diff)
downloadnixpkgs-4655b8776d351456ffc343ebc84575e58803a539.tar
nixpkgs-4655b8776d351456ffc343ebc84575e58803a539.tar.gz
nixpkgs-4655b8776d351456ffc343ebc84575e58803a539.tar.bz2
nixpkgs-4655b8776d351456ffc343ebc84575e58803a539.tar.lz
nixpkgs-4655b8776d351456ffc343ebc84575e58803a539.tar.xz
nixpkgs-4655b8776d351456ffc343ebc84575e58803a539.tar.zst
nixpkgs-4655b8776d351456ffc343ebc84575e58803a539.zip
tachyon: add armv7l support
Diffstat (limited to 'pkgs/development/libraries/tachyon')
-rw-r--r--pkgs/development/libraries/tachyon/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/libraries/tachyon/default.nix b/pkgs/development/libraries/tachyon/default.nix
index 53e48eb8931..0185bd2733b 100644
--- a/pkgs/development/libraries/tachyon/default.nix
+++ b/pkgs/development/libraries/tachyon/default.nix
@@ -38,6 +38,7 @@ stdenv.mkDerivation rec {
   arch = if stdenv.system == "x86_64-linux"   then "linux-64-thr"  else
          if stdenv.system == "i686-linux"     then "linux-thr"     else
          if stdenv.system == "aarch64-linux"  then "linux-arm-thr" else
+         if stdenv.system == "armv7l-linux"   then "linux-arm-thr" else
          if stdenv.system == "x86_64-darwin"  then "macosx-thr"    else
          if stdenv.system == "i686-darwin"    then "macosx-64-thr" else
          if stdenv.system == "i686-cygwin"    then "win32"         else