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