summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/misc/bandwidth
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2017-03-09 03:37:14 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-03-09 03:38:04 +0200
commit15089457556a99db79ad661a470333fc7cd9021a (patch)
tree76e5d95fa5c440f01c70a80b83b908c3662a7422 /pkgs/tools/misc/bandwidth
parentc87ae41764461240f650d4b25e83edf21e7cf48d (diff)
treewide: Fix eval-release.nix for aarch64
Diffstat (limited to 'pkgs/tools/misc/bandwidth')
-rw-r--r--pkgs/tools/misc/bandwidth/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/bandwidth/default.nix b/pkgs/tools/misc/bandwidth/default.nix
index 05fbe9b56324..8b0e17191964 100644
--- a/pkgs/tools/misc/bandwidth/default.nix
+++ b/pkgs/tools/misc/bandwidth/default.nix
@@ -7,7 +7,7 @@ let
else if stdenv.system == "x86_64-darwin" then "bandwidth-mac64"
else if stdenv.system == "i686-darwin" then "bandwidth-mac32"
else if stdenv.system == "i686-cygwin" then "bandwidth-win32"
- else null;
+ else throw "Unknown architecture";
in
stdenv.mkDerivation rec {
name = "bandwidth-${version}";