From 4655b8776d351456ffc343ebc84575e58803a539 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Thu, 26 Apr 2018 16:35:11 +0200 Subject: [PATCH] tachyon: add armv7l support --- pkgs/development/libraries/tachyon/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/tachyon/default.nix b/pkgs/development/libraries/tachyon/default.nix index 53e48eb89317..0185bd2733b4 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