mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
v8: no abort
svn path=/nixpkgs/trunk/; revision=24810
This commit is contained in:
parent
1c86c832c1
commit
a2df7f46ea
@ -2,8 +2,9 @@
|
|||||||
|
|
||||||
let
|
let
|
||||||
system = stdenv.system;
|
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
|
in
|
||||||
|
assert system == "i686-linux" || system == "x86_64-linux";
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "v8-r${toString src.rev}";
|
name = "v8-r${toString src.rev}";
|
||||||
src = fetchsvn {
|
src = fetchsvn {
|
||||||
|
Loading…
Reference in New Issue
Block a user