default.nix 520 B

123456789101112131415161718
  1. # This file has been generated by node2nix 1.11.1. Do not edit!
  2. {pkgs ? import <nixpkgs> {
  3. inherit system;
  4. }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-16_x"}:
  5. let
  6. nodeEnv = import ./node-env.nix {
  7. inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
  8. inherit pkgs nodejs;
  9. libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
  10. };
  11. in
  12. import ./node-packages.nix {
  13. inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
  14. inherit nodeEnv;
  15. }