diff options
author | Joris | 2020-02-03 18:28:50 +0100 |
---|---|---|
committer | Joris | 2020-02-03 18:28:50 +0100 |
commit | cbcc269be607cc964fbd69d179d8a0e8b8e4bffa (patch) | |
tree | 7a8135f7ede7e1ff02bc1cf1d697a8c39a56e962 /nix/nodePackages/default.nix | |
parent | c7e20a6dd01a2ae049c451d18511708aaee60a19 (diff) |
Extract dom and number utilities to external files
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 |