This commit is contained in:
m3tam3re
2024-10-17 18:57:52 +02:00
parent 6c720bdac6
commit c6d1b9a2ad
11 changed files with 76 additions and 29 deletions

View File

@ -0,0 +1,21 @@
{
fetchFromGitHub,
n8n,
pnpm,
}:
n8n.overrideAttrs (oldAttrs: rec {
pname = oldAttrs.pname;
version = "1.63.0";
src = fetchFromGitHub {
owner = "n8n-io";
repo = "n8n";
rev = "n8n@${version}";
hash = "sha256-zJHveCbBPJs8qbgCsU+dgucoXpAKa7PVLH4tfdcJZlE=";
};
pnpmDeps = pnpm.fetchDeps {
inherit pname version src;
hash = "sha256-FsBA/QENfreCJnYCw8MnX5W2D+WJ3DUuTIakH78TYU8=";
};
})