mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
nodejs/v8: Bump
svn path=/nixpkgs/trunk/; revision=33673
This commit is contained in:
parent
11040732bd
commit
68f739cc45
@ -5,14 +5,14 @@ assert readline != null;
|
|||||||
let
|
let
|
||||||
system = stdenv.system;
|
system = stdenv.system;
|
||||||
arch = if system == "i686-linux" then "ia32" else if system == "x86_64-linux" || system == "x86_64-darwin" then "x64" else "";
|
arch = if system == "i686-linux" then "ia32" else if system == "x86_64-linux" || system == "x86_64-darwin" then "x64" else "";
|
||||||
version = "3.6.6.20";
|
version = "3.6.6.24";
|
||||||
in
|
in
|
||||||
assert arch != "";
|
assert arch != "";
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "v8-${version}";
|
name = "v8-${version}";
|
||||||
src = fetchsvn {
|
src = fetchsvn {
|
||||||
url = "http://v8.googlecode.com/svn/tags/${version}";
|
url = "http://v8.googlecode.com/svn/tags/${version}";
|
||||||
sha256 = "68565086baa5a37a0fa15e1c0b7914210fa590b29a8196014cd83789da6a01ba";
|
sha256 = "405c905f6240b37b0da14769781e7ec6444fe9153a02ddacd5d774713fe1eb41";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [python scons readline makeWrapper];
|
buildInputs = [python scons readline makeWrapper];
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
{ stdenv, fetchurl, openssl, python, zlib, v8, darwinInstallNameToolUtility }:
|
{ stdenv, fetchurl, openssl, python, zlib, v8, darwinInstallNameToolUtility }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.6.11";
|
version = "0.6.14";
|
||||||
name = "nodejs-${version}";
|
name = "nodejs-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
|
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
|
||||||
sha256 = "1lfb2f8b6j0wszvsmarzs17h1gwaqvz1rr4nbfnx4pv4c8nxpfwl";
|
sha256 = "07ygshbzx4xxj4apx5qzlpwsavnpkk54i2845my1kiamh4q246g4";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
|
Loading…
Reference in New Issue
Block a user