mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
17 lines
457 B
Nix
17 lines
457 B
Nix
|
{ stdenv, pkgs }:
|
||
|
|
||
|
let
|
||
|
# node-packages*.nix generated via:
|
||
|
#
|
||
|
# % node2nix --input node-packages.json \
|
||
|
# --output node-packages-generated.nix \
|
||
|
# --composition node-packages.nix \
|
||
|
# --node-env ./../../development/node-packages/node-env.nix \
|
||
|
# --pkg-name nodejs-6_x
|
||
|
#
|
||
|
nodePackages = import ./node-packages.nix {
|
||
|
inherit pkgs;
|
||
|
inherit (stdenv) system;
|
||
|
};
|
||
|
in nodePackages.base16-builder
|