about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-12-06 00:06:43 +0100
committerGraham Christensen <graham@grahamc.com>2017-12-12 18:08:10 -0500
commit3a110ea3f96db56012f7f2707e842593a7d7c5b8 (patch)
tree727bb87c20c860814a494875af0b874d3b977bbb /pkgs/applications/graphics
parent76bf375a162d81d49b274eb07d6a33a74fe8850f (diff)
downloadnixlib-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar
nixlib-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar.gz
nixlib-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar.bz2
nixlib-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar.lz
nixlib-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar.xz
nixlib-3a110ea3f96db56012f7f2707e842593a7d7c5b8.tar.zst
nixlib-3a110ea3f96db56012f7f2707e842593a7d7c5b8.zip
treewide platform checks: `abort` -> `throw`
They aren't meant to be critical (uncatchable) errors.
Tested with nix-env + checkMeta:
[ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/unigine-valley/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/unigine-valley/default.nix b/pkgs/applications/graphics/unigine-valley/default.nix
index 31908dcfd9f0..f1adc6bd10ea 100644
--- a/pkgs/applications/graphics/unigine-valley/default.nix
+++ b/pkgs/applications/graphics/unigine-valley/default.nix
@@ -22,7 +22,7 @@ let
   else if stdenv.system == "i686-linux" then
     "x86"
   else
-    abort "Unsupported platform";
+    throw "Unsupported platform ${stdenv.system}";
 
 in
   stdenv.mkDerivation rec {