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

21 lines
487 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
];
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 ];
2020-11-28 16:59:45 +00:00
license = licenses.asl20;
};
}