nixpkgs/pkgs/applications/networking/n8n/default.nix

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

29 lines
762 B
Nix
Raw Normal View History

{ pkgs, nodejs-14_x, stdenv, lib }:
2020-11-28 16:59:45 +00:00
let
nodePackages = import ./node-composition.nix {
inherit pkgs;
nodejs = nodejs-14_x;
2020-11-28 16:59:45 +00:00
inherit (stdenv.hostPlatform) system;
};
in
nodePackages.n8n.override {
nativeBuildInputs = with pkgs.nodePackages; [
node-pre-gyp
];
2022-01-30 16:42:33 +00:00
passthru.updateScript = ./generate-dependencies.sh;
2020-11-28 16:59:45 +00:00
meta = with lib; {
description = "Free and open fair-code licensed node based Workflow Automation Tool";
maintainers = with maintainers; [ freezeboy k900 ];
license = {
fullName = "Sustainable Use License";
url = "https://github.com/n8n-io/n8n/blob/master/LICENSE.md";
free = false;
# only free to redistribute "for non-commercial purposes"
redistributable = false;
};
2020-11-28 16:59:45 +00:00
};
}