nodejs-5_x: 5.11.1 -> 5.12.0 (#16657)

This commit is contained in:
Christine Koppelt 2016-07-19 11:34:39 +02:00 committed by Franz Pletz
parent 2e8c21e4dd
commit 1c39145bc2
2 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ in stdenv.mkDerivation {
description = "Event-driven I/O framework for the V8 JavaScript engine";
homepage = http://nodejs.org;
license = licenses.mit;
maintainers = [ maintainers.goibhniu maintainers.havvy maintainers.gilligan ];
maintainers = [ maintainers.goibhniu maintainers.havvy maintainers.gilligan maintainers.cko ];
platforms = platforms.linux ++ platforms.darwin;
};
}

View File

@ -4,9 +4,9 @@
}@args:
import ./nodejs.nix (args // rec {
version = "5.11.1";
version = "5.12.0";
src = fetchurl {
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
sha256 = "07v60mhswj77m7516zakj3p1py7ixa5jbgj0m7zlr9vygrrc66zi";
sha256 = "4f926373f11f2a25156eee1804ec012eb912c42e5d34fc2909889da22efdadfe";
};
})