Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2c7b9d520e1a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e0d3ef73662b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 31, 2017

  1. nodejs: 8.8.1 -> 8.9.0

    lo1tuma committed Oct 31, 2017
    Copy the full SHA
    f1e8138 View commit details

Commits on Nov 1, 2017

  1. Merge pull request #31065 from holidaycheck/nodejs-8.9.0

    nodejs: 8.8.1 -> 8.9.0
    orivej authored Nov 1, 2017

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e0d3ef7 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/web/nodejs/v8.nix
4 changes: 2 additions & 2 deletions pkgs/development/web/nodejs/v8.nix
Original file line number Diff line number Diff line change
@@ -10,11 +10,11 @@ let
baseName = if enableNpm then "nodejs" else "nodejs-slim";
in
stdenv.mkDerivation (nodejs // rec {
version = "8.8.1";
version = "8.9.0";
name = "${baseName}-${version}";
src = fetchurl {
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
sha256 = "0ymmhw41n5a81qkxvq7lrssis4y53jh5gxs2k6s2v6brnxxc9qjw";
sha256 = "128ir6rkdz1xj55hbflw0sh7snrrvjwgvxmgnka7cyhjkvw5i0mf";
};

patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];