nixpkgs/pkgs/servers/mjolnir/node-composition.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
516 B
Nix
Raw Normal View History

2022-05-16 08:19:52 +00:00
# This file has been generated by node2nix 1.11.1. Do not edit!
2021-05-21 12:15:04 +00:00
{pkgs ? import <nixpkgs> {
inherit system;
2022-02-01 16:48:12 +00:00
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-14_x"}:
2021-05-21 12:15:04 +00:00
let
nodeEnv = import ./node-env.nix {
2022-02-01 16:48:12 +00:00
inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
2021-05-21 12:15:04 +00:00
inherit pkgs nodejs;
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
};
in
import ./node-deps.nix {
inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
inherit nodeEnv;
}