nodejs: 7.10.0 -> 7.10.1

This commit is contained in:
adisbladis 2017-07-14 12:31:48 +08:00
parent fffe1efa03
commit ea4e03d7ac
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5

View File

@ -10,13 +10,12 @@ let
baseName = if enableNpm then "nodejs" else "nodejs-slim";
in
stdenv.mkDerivation (nodejs // rec {
version = "7.10.0";
version = "7.10.1";
name = "${baseName}-${version}";
src = fetchurl {
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
sha256 = "08czj7ssvzgv13zvhg2y9mhy4cc6pvm4bcp7rbzj3a2ba8axsd6w";
sha256 = "654db852149a1cc59ece68ec573b0486907e8febe8353cee097dd29ea5a56cfa";
};
patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
})