summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/n8n/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/n8n/default.nix')
-rw-r--r--pkgs/applications/networking/n8n/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/applications/networking/n8n/default.nix b/pkgs/applications/networking/n8n/default.nix
index 4592d17d348f..41ff2b74a064 100644
--- a/pkgs/applications/networking/n8n/default.nix
+++ b/pkgs/applications/networking/n8n/default.nix
@@ -15,16 +15,12 @@ nodePackages.n8n.override {
pkgs.postgresql
];
- # Patch minified source with changes from https://github.com/n8n-io/n8n/pull/5052
- preRebuild = ''
- patch -p1 -i ${./fix-permissions.diff}
- '' +
# Oracle's official package on npm is binary only (WHY?!) and doesn't provide binaries for aarch64.
# This can supposedly be fixed by building a custom copy of the module from source, but that's way
# too much complexity for a setup no one would ever actually run.
#
# NB: If you _are_ actually running n8n on Oracle on aarch64, feel free to submit a patch.
- lib.optionalString stdenv.isAarch64 ''
+ preRebuild = lib.optionalString stdenv.isAarch64 ''
rm -rf node_modules/oracledb
'';