n8n: init at 0.96.0

This commit is contained in:
freezeboy
2020-12-04 23:47:34 +01:00
parent 40440b2209
commit b5ee81b8aa
7 changed files with 7519 additions and 0 deletions
@@ -0,0 +1,18 @@
{ pkgs, nodejs, stdenv, lib, ... }:
let
nodePackages = import ./node-composition.nix {
inherit pkgs nodejs;
inherit (stdenv.hostPlatform) system;
};
in
nodePackages.n8n.override {
nativeBuildInputs = with pkgs.nodePackages; [
node-pre-gyp
];
meta = with lib; {
description = "Free and open fair-code licensed node based Workflow Automation Tool";
maintainers = with maintainers; [ freezeboy ];
license = licenses.asl20;
};
}