Skip to content

Commit

Permalink
nodePackages: upgrade node2nix to version 1.1.1 and regenerate the pa…
Browse files Browse the repository at this point in the history
…ckage set
  • Loading branch information
svanderburg committed Jan 20, 2017
1 parent 2b2b0b5 commit 5cf1a4d
Show file tree
Hide file tree
Showing 11 changed files with 6,653 additions and 6,913 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/node-packages/composition-v4.nix
@@ -1,16 +1,16 @@
# 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;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs"}:

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;
}
}
6 changes: 3 additions & 3 deletions pkgs/development/node-packages/composition-v6.nix
@@ -1,16 +1,16 @@
# 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;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-5_x"}:

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;
}
}
4 changes: 2 additions & 2 deletions pkgs/development/node-packages/node-env.nix
@@ -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" {} ''
Expand Down

0 comments on commit 5cf1a4d

Please sign in to comment.