node-default.nix
16 lines
| 476 B
| text/x-nix
|
NixLexer
/ pkgs / node-default.nix
r2916 | # This file has been generated by node2nix 1.6.0. Do not edit! | ||
r707 | |||
{pkgs ? import <nixpkgs> { | |||
inherit system; | |||
r2824 | }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-6_x"}: | ||
r707 | |||
let | |||
nodeEnv = import ./node-env.nix { | |||
r2824 | inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile; | ||
inherit nodejs; | |||
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; | |||
r707 | }; | ||
in | |||
import ./node-packages.nix { | |||
inherit (pkgs) fetchurl fetchgit; | |||
inherit nodeEnv; | |||
} |