mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
2de9321880
so nodeEnv uses the exact same version. See also https://github.com/svanderburg/node2nix/issues/25
16 lines
394 B
Nix
16 lines
394 B
Nix
# This file has been generated by node2nix 1.1.0. Do not edit!
|
|
|
|
{pkgs ? import <nixpkgs> {
|
|
inherit system;
|
|
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs"}:
|
|
|
|
let
|
|
nodeEnv = import ./node-env.nix {
|
|
inherit (pkgs) stdenv utillinux runCommand writeTextFile;
|
|
inherit nodejs;
|
|
};
|
|
in
|
|
import ./node-packages-v4.nix {
|
|
inherit (pkgs) fetchurl fetchgit;
|
|
inherit nodeEnv;
|
|
}
|