v8: no abort

svn path=/nixpkgs/trunk/; revision=24810

+2 -1
+2 -1
pkgs/development/libraries/v8/default.nix
··· 2 2 3 3 let 4 4 system = stdenv.system; 5 - arch = if system == "i686-linux" then "ia32" else if system == "x86_64-linux" then "x64" else abort "not supported"; 5 + arch = if system == "i686-linux" then "ia32" else if system == "x86_64-linux" then "x64" else ""; 6 6 in 7 + assert system == "i686-linux" || system == "x86_64-linux"; 7 8 stdenv.mkDerivation rec { 8 9 name = "v8-r${toString src.rev}"; 9 10 src = fetchsvn {