2021-10-21 23:00:13 -07:00
|
|
|
# This file has been generated by node2nix 1.9.0. Do not edit!
|
2020-04-07 20:52:13 -07:00
|
|
|
|
|
|
|
{pkgs ? import <nixpkgs> {
|
|
|
|
inherit system;
|
|
|
|
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}:
|
|
|
|
|
|
|
|
let
|
|
|
|
nodeEnv = import ./node-env.nix {
|
2021-10-21 23:00:13 -07:00
|
|
|
inherit (pkgs) stdenv lib python2 runCommand writeTextFile;
|
|
|
|
inherit pkgs nodejs;
|
2020-04-07 20:52:13 -07:00
|
|
|
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
import ./node-packages.nix {
|
2021-10-21 23:00:13 -07:00
|
|
|
inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
|
2020-04-07 20:52:13 -07:00
|
|
|
inherit nodeEnv;
|
2021-10-21 23:00:13 -07:00
|
|
|
}
|