summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/n8n/default.nix
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-11-28 17:59:45 +0100
committerfreezeboy <freezeboy@users.noreply.github.com>2020-12-04 23:47:34 +0100
commitb5ee81b8aa5ed191793a62bf96a7284ca6b2bf9c (patch)
treefc51991cc107ce27a797eddcfb5d015d9cef095c /pkgs/applications/networking/n8n/default.nix
parent40440b2209ed82520194ca40010b7cb3a65e233a (diff)
n8n: init at 0.96.0
Diffstat (limited to 'pkgs/applications/networking/n8n/default.nix')
-rw-r--r--pkgs/applications/networking/n8n/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/applications/networking/n8n/default.nix b/pkgs/applications/networking/n8n/default.nix
new file mode 100644
index 000000000000..94305a8cfeea
--- /dev/null
+++ b/pkgs/applications/networking/n8n/default.nix
@@ -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;
+ };
+}