summary refs log tree commit diff
path: root/pkgs/applications/networking/n8n/default.nix
blob: e7e1be095a20482a8f43d989fd81cc8b64de173f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ pkgs, nodejs-14_x, stdenv, lib }:

let
  nodePackages = import ./node-composition.nix {
    inherit pkgs;
    nodejs = nodejs-14_x;
    inherit (stdenv.hostPlatform) system;
  };
in
nodePackages.n8n.override {
  nativeBuildInputs = with pkgs.nodePackages; [
    node-pre-gyp
  ];

  passthru.updateScript = ./generate-dependencies.sh;

  meta = with lib; {
    description = "Free and open fair-code licensed node based Workflow Automation Tool";
    maintainers = with maintainers; [ freezeboy k900 ];
    license = licenses.asl20;
  };
}