4129e8e78c
svn path=/nixpkgs/trunk/; revision=34265
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, fetchsvn, python, scons, readline, makeWrapper }:
|
|
|
|
assert readline != null;
|
|
|
|
let
|
|
system = stdenv.system;
|
|
arch = if system == "i686-linux" then "ia32" else if system == "x86_64-linux" || system == "x86_64-darwin" then "x64" else "";
|
|
version = "3.6.6.25";
|
|
in
|
|
assert arch != "";
|
|
stdenv.mkDerivation rec {
|
|
name = "v8-${version}";
|
|
src = fetchsvn {
|
|
url = "http://v8.googlecode.com/svn/tags/${version}";
|
|
sha256 = "2a097cbea29a8488419840245bf7bf85513941ceb22c5ef0a3825bfe5edaa045";
|
|
};
|
|
|
|
buildInputs = [python scons readline makeWrapper];
|
|
|
|
buildPhase = ''
|
|
export CXX=`type -p g++`
|
|
export CPPPATH=${readline}/include
|
|
export LIBPATH=${readline}/lib
|
|
scons snapshot=on console=readline library=shared importenv=PATH arch=${arch} library d8
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/lib
|
|
|
|
cp -v libv8.* $out/lib
|
|
cp -v d8 $out/bin/d8
|
|
cp -vR include $out/
|
|
wrapProgram $out/bin/d8 --set ${if stdenv.isDarwin then "DYLD_LIBRARY_PATH" else "LD_LIBRARY_PATH"} $out/lib
|
|
'';
|
|
}
|