diff options
author | Parthiv Seetharaman <pachum99@myrdd.info> | 2022-01-16 21:29:21 -0800 |
---|---|---|
committer | Parthiv Seetharaman <pachum99@myrdd.info> | 2022-01-16 21:44:42 -0800 |
commit | 8c05a809d70aeeb6c6e23d405ba693040ad00730 (patch) | |
tree | 70cc604e5eeb943e15c925f8e0c4d6d1eae8ed7c /pkgs/mx-puppet-slack/node-composition.nix |
init the module, README, packages, and other stuff
Diffstat (limited to 'pkgs/mx-puppet-slack/node-composition.nix')
-rw-r--r-- | pkgs/mx-puppet-slack/node-composition.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/mx-puppet-slack/node-composition.nix b/pkgs/mx-puppet-slack/node-composition.nix new file mode 100644 index 0000000..16fd035 --- /dev/null +++ b/pkgs/mx-puppet-slack/node-composition.nix @@ -0,0 +1,20 @@ +# This file has been generated by node2nix 1.9.0. Do not edit! + +{ pkgs ? import ../../.. { + inherit system; + } +, system ? builtins.currentSystem +, nodejs ? pkgs."nodejs-12_x" +}: + +let + nodeEnv = import ./node-env.nix { + inherit (pkgs) stdenv lib python2 runCommand writeTextFile; + inherit pkgs nodejs; + libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; + }; +in +import ./node-packages.nix { + inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit; + inherit nodeEnv; +} |