tachyon: add armv7l support

This commit is contained in:
Timo Kaufmann 2018-04-26 16:35:11 +02:00
parent b7a6689d6f
commit 4655b8776d

View File

@ -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