v8: Bring back old version 3.14.
The current version of v8 breaks builds of nodejs, mongodb and rethinkdb. So let's bring back the old package with annoying _3_14 version suffix so hopefully the corresponding maintainers will get rid of that dependency :-) Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
202755ca2f
commit
4c8ec5e12e
65
pkgs/development/libraries/v8/3.14.nix
Normal file
65
pkgs/development/libraries/v8/3.14.nix
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
{ stdenv, fetchsvn, gyp, readline, python, which }:
|
||||||
|
|
||||||
|
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.14.5.9";
|
||||||
|
in
|
||||||
|
|
||||||
|
assert arch != "";
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "v8-${version}";
|
||||||
|
|
||||||
|
src = fetchsvn {
|
||||||
|
url = "http://v8.googlecode.com/svn/tags/${version}";
|
||||||
|
sha256 = "18qp5qp5xrb6f00w01cklz358yrl54pks963f5rwvwz82d8sfyqr";
|
||||||
|
name = "v8-${version}-src";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [ ./fix-GetLocalizedMessage-usage.patch ];
|
||||||
|
|
||||||
|
configurePhase = ''
|
||||||
|
mkdir build/gyp
|
||||||
|
ln -sv ${gyp}/bin/gyp build/gyp/gyp
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ which ];
|
||||||
|
buildInputs = [ readline python ];
|
||||||
|
|
||||||
|
buildFlags = [
|
||||||
|
"library=shared"
|
||||||
|
"console=readline"
|
||||||
|
"${arch}.release"
|
||||||
|
];
|
||||||
|
|
||||||
|
# http://code.google.com/p/v8/issues/detail?id=2149
|
||||||
|
NIX_CFLAGS_COMPILE = "-Wno-unused-local-typedefs -Wno-aggressive-loop-optimizations";
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
mkdir -p $out/lib
|
||||||
|
mv -v out/${arch}.release/d8 $out/bin
|
||||||
|
|
||||||
|
${if stdenv.system == "x86_64-darwin" then
|
||||||
|
"mv -v out/${arch}.release/libv8.dylib $out/lib"
|
||||||
|
else
|
||||||
|
"mv -v out/${arch}.release/lib.target/libv8.so $out/lib"}
|
||||||
|
mv -v include $out/
|
||||||
|
'';
|
||||||
|
|
||||||
|
postFixup = if stdenv.isDarwin then ''
|
||||||
|
install_name_tool -change /usr/local/lib/libv8.dylib $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.gcc.gcc}/lib/libgcc_s.1.dylib $out/bin/d8
|
||||||
|
install_name_tool -id $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.gcc.gcc}/lib/libgcc_s.1.dylib $out/lib/libv8.dylib
|
||||||
|
'' else null;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "V8 is Google's open source JavaScript engine";
|
||||||
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, openssl, python, zlib, v8, utillinux, http-parser, c-ares, pkgconfig, runCommand }:
|
{ stdenv, fetchurl, openssl, python, zlib, v8_3_14, utillinux, http-parser, c-ares, pkgconfig, runCommand }:
|
||||||
|
|
||||||
let
|
let
|
||||||
dtrace = runCommand "dtrace-native" {} ''
|
dtrace = runCommand "dtrace-native" {} ''
|
||||||
@ -10,7 +10,7 @@ let
|
|||||||
|
|
||||||
# !!! Should we also do shared libuv?
|
# !!! Should we also do shared libuv?
|
||||||
deps = {
|
deps = {
|
||||||
inherit v8 openssl zlib http-parser;
|
inherit v8_3_14 openssl zlib http-parser;
|
||||||
cares = c-ares;
|
cares = c-ares;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, scons, boost, v8, gperftools, pcre, snappy }:
|
{ stdenv, fetchurl, scons, boost, v8_3_14, gperftools, pcre, snappy }:
|
||||||
|
|
||||||
let version = "2.4.8"; in stdenv.mkDerivation rec {
|
let version = "2.4.8"; in stdenv.mkDerivation rec {
|
||||||
name = "mongodb-${version}";
|
name = "mongodb-${version}";
|
||||||
@ -8,7 +8,7 @@ let version = "2.4.8"; in stdenv.mkDerivation rec {
|
|||||||
sha256 = "1p6gnharypglfp39halp72fig96fqjhakyy7m76a1prxwpjkqw7x";
|
sha256 = "1p6gnharypglfp39halp72fig96fqjhakyy7m76a1prxwpjkqw7x";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ scons boost v8 gperftools pcre snappy ];
|
nativeBuildInputs = [ scons boost v8_3_14 gperftools pcre snappy ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace SConstruct \
|
substituteInPlace SConstruct \
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, which, protobuf, v8, ncurses, gperftools, boost, m4 }:
|
{ stdenv, fetchurl, which, protobuf, v8_3_14, ncurses, gperftools, boost, m4 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "rethinkdb-1.11.2";
|
name = "rethinkdb-1.11.2";
|
||||||
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
configureFlags = "--lib-path ${gperftools}/lib";
|
configureFlags = "--lib-path ${gperftools}/lib";
|
||||||
|
|
||||||
buildInputs = [ protobuf v8 ncurses boost ];
|
buildInputs = [ protobuf v8_3_14 ncurses boost ];
|
||||||
|
|
||||||
nativeBuildInputs = [ which m4 ];
|
nativeBuildInputs = [ which m4 ];
|
||||||
|
|
||||||
|
@ -6147,7 +6147,13 @@ let
|
|||||||
inherit (gnome) libsoup;
|
inherit (gnome) libsoup;
|
||||||
};
|
};
|
||||||
|
|
||||||
v8 = callPackage ../development/libraries/v8 { inherit (pythonPackages) gyp; };
|
v8 = callPackage ../development/libraries/v8 {
|
||||||
|
inherit (pythonPackages) gyp;
|
||||||
|
};
|
||||||
|
|
||||||
|
v8_3_14 = callPackage ../development/libraries/v8/3.14.nix {
|
||||||
|
inherit (pythonPackages) gyp;
|
||||||
|
};
|
||||||
|
|
||||||
xmlsec = callPackage ../development/libraries/xmlsec { };
|
xmlsec = callPackage ../development/libraries/xmlsec { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user