n8n override fix

This commit is contained in:
m3tam3re 2025-03-26 12:24:36 +01:00
parent 8a2b5438af
commit 0e6ea2bacb
2 changed files with 14 additions and 7 deletions

View File

@ -109,7 +109,6 @@
# libsForQt5.qtstyleplugins
# stable.nyxt
# pcmanfm
protonmail-desktop
rose-pine-hyprcursor
# qt5ct
# qt6.qtwayland

View File

@ -1,17 +1,25 @@
{prev}:
prev.n8n.overrideAttrs (oldAttrs: rec {
pname = oldAttrs.pname;
version = "1.78.1";
version = "1.84.1";
src = prev.fetchFromGitHub {
owner = "n8n-io";
repo = "n8n";
rev = "n8n@${version}";
hash = "sha256-z1UDjamwoXRCd+zWBXHUV0LEDZjbgFONS7i8cQppLFg=";
hash = "sha256-kZTB9fkC24qr0fenJxEzNdDEXMVTBCEtckPMx2evXsY=";
};
pnpmDeps = prev.pnpm_9.fetchDeps {
inherit pname version src;
hash = "sha256-1vheGCTGacrQMVJjYrEuv4NC4ImSb+WAbYLXpEithnM=";
pnpmDeps = prev.pnpm_10.fetchDeps {
pname = oldAttrs.pname;
inherit version src;
hash = "sha256-J3iNolU7QEYhAakGI5QcbRuxrh+4JI8oKCQlk+KrgEk=";
};
nativeBuildInputs =
builtins.map
(input:
if input == prev.pnpm_9.configHook
then prev.pnpm_10.configHook
else input)
oldAttrs.nativeBuildInputs;
})