diff options
Diffstat (limited to 'nix/nodePackages/default.nix')
-rw-r--r-- | nix/nodePackages/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/nix/nodePackages/default.nix b/nix/nodePackages/default.nix new file mode 100644 index 0000000..fa0a148 --- /dev/null +++ b/nix/nodePackages/default.nix @@ -0,0 +1,17 @@ +# This file has been generated by node2nix 1.7.0. Do not edit! + +{pkgs ? import <nixpkgs> { + inherit system; + }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-10_x"}: + +let + nodeEnv = import ./node-env.nix { + inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile; + inherit nodejs; + libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; + }; +in +import ./node-packages.nix { + inherit (pkgs) fetchurl fetchgit; + inherit nodeEnv; +}
\ No newline at end of file |