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:
aszlig
2014-03-24 13:45:21 +01:00
parent 202755ca2f
commit 4c8ec5e12e
5 changed files with 78 additions and 7 deletions

View File

@@ -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
dtrace = runCommand "dtrace-native" {} ''
@@ -10,7 +10,7 @@ let
# !!! Should we also do shared libuv?
deps = {
inherit v8 openssl zlib http-parser;
inherit v8_3_14 openssl zlib http-parser;
cares = c-ares;
};