nodePackages: upgrade node2nix to version 1.1.1 and regenerate the package set

This commit is contained in:
Sander van der Burg
2017-01-20 22:05:44 +01:00
parent 2b2b0b566d
commit 5cf1a4d36a
11 changed files with 6822 additions and 7082 deletions
@@ -1,4 +1,4 @@
# This file has been generated by node2nix 1.1.0. Do not edit!
# This file has been generated by node2nix 1.1.1. Do not edit!
{pkgs ? import <nixpkgs> {
inherit system;
@@ -6,11 +6,11 @@
let
nodeEnv = import ./node-env.nix {
inherit (pkgs) stdenv utillinux runCommand writeTextFile;
inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile;
inherit nodejs;
};
in
import ./node-packages-v4.nix {
inherit (pkgs) fetchurl fetchgit;
inherit nodeEnv;
}
}
@@ -1,4 +1,4 @@
# This file has been generated by node2nix 1.1.0. Do not edit!
# This file has been generated by node2nix 1.1.1. Do not edit!
{pkgs ? import <nixpkgs> {
inherit system;
@@ -6,11 +6,11 @@
let
nodeEnv = import ./node-env.nix {
inherit (pkgs) stdenv utillinux runCommand writeTextFile;
inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile;
inherit nodejs;
};
in
import ./node-packages-v6.nix {
inherit (pkgs) fetchurl fetchgit;
inherit nodeEnv;
}
}
+2 -2
View File
@@ -1,9 +1,9 @@
# This file originates from node2nix
{stdenv, nodejs, utillinux, runCommand, writeTextFile}:
{stdenv, nodejs, python2, utillinux, runCommand, writeTextFile}:
let
inherit (nodejs) python;
python = if nodejs ? python then nodejs.python else python2;
# Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise
tarWrapper = runCommand "tarWrapper" {} ''
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff