v8: no abort
svn path=/nixpkgs/trunk/; revision=24810
This commit is contained in:
parent
1c86c832c1
commit
a2df7f46ea
1 changed files with 2 additions and 1 deletions
|
@ -2,8 +2,9 @@
|
|||
|
||||
let
|
||||
system = stdenv.system;
|
||||
arch = if system == "i686-linux" then "ia32" else if system == "x86_64-linux" then "x64" else abort "not supported";
|
||||
arch = if system == "i686-linux" then "ia32" else if system == "x86_64-linux" then "x64" else "";
|
||||
in
|
||||
assert system == "i686-linux" || system == "x86_64-linux";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "v8-r${toString src.rev}";
|
||||
src = fetchsvn {
|
||||
|
|
Loading…
Reference in a new issue