nixpkgs/pkgs/development/web/newman/node-composition.nix

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

18 lines
520 B
Nix
Raw Normal View History

2022-12-07 08:16:53 +00:00
# This file has been generated by node2nix 1.11.1. Do not edit!
2020-07-12 08:22:25 +00:00
{pkgs ? import <nixpkgs> {
inherit system;
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-14_x"}:
2020-07-12 08:22:25 +00:00
let
nodeEnv = import ./node-env.nix {
2022-12-07 08:16:53 +00:00
inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
inherit pkgs nodejs;
2020-07-12 08:22:25 +00:00
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
};
in
import ./node-packages.nix {
inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
2020-07-12 08:22:25 +00:00
inherit nodeEnv;
}