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: 41b2c16087a3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 69dd2456ff53
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 19, 2017

  1. nodejs: 6.9.5 -> 6.11.1

    (cherry picked from commit fffe1ef)
    adisbladis authored and joepie91 committed Jul 19, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    LnL7 Daiderd Jordan
    Copy the full SHA
    59249d0 View commit details
  2. Merge pull request #27489 from joepie91/patch/cherrypick-node

    nodejs: 6.9.5 -> 6.11.1
    grahamc authored Jul 19, 2017
    Copy the full SHA
    69dd245 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/web/nodejs/v6.nix
4 changes: 2 additions & 2 deletions pkgs/development/web/nodejs/v6.nix
Original file line number Diff line number Diff line change
@@ -10,10 +10,10 @@ let
baseName = if enableNpm then "nodejs" else "nodejs-slim";
in
stdenv.mkDerivation (nodejs // rec {
version = "6.9.5";
version = "6.11.1";
name = "${baseName}-${version}";
src = fetchurl {
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
sha256 = "1cxnsprv2sy2djskx6yfw14f578s1fwzvmvnw7rh75djajix3znp";
sha256 = "6f6655b85919aa54cb045a6d69a226849802fcc26491d0db4ce59873e41cc2b8";
};
})