forked from mirrors/nixpkgs
nodejs: Drop 4_x packages
nodejs-4_x is scheduled end-of-life on 2018-04-30 It should not go in the 18.03 release
This commit is contained in:
parent
2da3be709b
commit
d192858a76
|
@ -1,16 +0,0 @@
|
|||
# This file has been generated by node2nix 1.5.1. Do not edit!
|
||||
|
||||
{pkgs ? import <nixpkgs> {
|
||||
inherit system;
|
||||
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-4_x"}:
|
||||
|
||||
let
|
||||
nodeEnv = import ./node-env.nix {
|
||||
inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile;
|
||||
inherit nodejs;
|
||||
};
|
||||
in
|
||||
import ./node-packages-v4.nix {
|
||||
inherit (pkgs) fetchurl fetchgit;
|
||||
inherit nodeEnv;
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
{pkgs, system, nodejs, stdenv}:
|
||||
|
||||
let
|
||||
nodePackages = import ./composition-v4.nix {
|
||||
inherit pkgs system nodejs;
|
||||
};
|
||||
in
|
||||
nodePackages // {
|
||||
node-inspector = nodePackages.node-inspector.override (oldAttrs: {
|
||||
buildInputs = oldAttrs.buildInputs ++ [ nodePackages.node-pre-gyp ];
|
||||
});
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
[
|
||||
"coffee-script"
|
||||
, "grunt-cli"
|
||||
, "gulp"
|
||||
, "node-gyp"
|
||||
, "node-inspector"
|
||||
, "node-pre-gyp"
|
||||
, "npm"
|
||||
]
|
File diff suppressed because it is too large
Load diff
|
@ -1,11 +0,0 @@
|
|||
{ stdenv, callPackage, lib, enableNpm ? true }:
|
||||
|
||||
let
|
||||
buildNodejs = callPackage ./nodejs.nix {};
|
||||
in
|
||||
buildNodejs {
|
||||
inherit enableNpm;
|
||||
version = "4.8.7";
|
||||
sha256 = "1y21wq092d3gmccm2zldbflbbbx7a71wi9l0bpkxvzmgws69liq3";
|
||||
patches = lib.optionals stdenv.isDarwin [ ./no-xcode.patch ];
|
||||
}
|
|
@ -3265,9 +3265,6 @@ with pkgs;
|
|||
|
||||
nodejs-slim = nodejs-slim-6_x;
|
||||
|
||||
nodejs-4_x = callPackage ../development/web/nodejs/v4.nix {};
|
||||
nodejs-slim-4_x = callPackage ../development/web/nodejs/v4.nix { enableNpm = false; };
|
||||
|
||||
nodejs-6_x = callPackage ../development/web/nodejs/v6.nix {};
|
||||
nodejs-slim-6_x = callPackage ../development/web/nodejs/v6.nix { enableNpm = false; };
|
||||
|
||||
|
@ -3285,10 +3282,6 @@ with pkgs;
|
|||
nodejs = pkgs.nodejs-6_x;
|
||||
};
|
||||
|
||||
nodePackages_4_x = callPackage ../development/node-packages/default-v4.nix {
|
||||
nodejs = pkgs.nodejs-4_x;
|
||||
};
|
||||
|
||||
nodePackages = nodePackages_6_x;
|
||||
|
||||
# Can be used as a user shell
|
||||
|
|
Loading…
Reference in a new issue