n8n: 1.61.0 -> 1.64.0, drop maintainer freezeboy (#350101)

This commit is contained in:
Aleksana
2024-11-21 21:34:40 +08:00
committed by GitHub
+7 -8
View File
@@ -18,18 +18,18 @@
stdenv.mkDerivation (finalAttrs: {
pname = "n8n";
version = "1.61.0";
version = "1.65.1";
src = fetchFromGitHub {
owner = "n8n-io";
repo = "n8n";
rev = "n8n@${finalAttrs.version}";
hash = "sha256-9hIwpid/uly7wUcrBgLkSw+Aah8OQ66MgrMQbs/5v1Y=";
hash = "sha256-3fGsghGzqLb9B0qrqPuJV2pypd3kJVUrYohMe9quqG4=";
};
pnpmDeps = pnpm.fetchDeps {
inherit (finalAttrs) pname version src;
hash = "sha256-lZLWqlR6xq7DYpnydgJK8gL7WdfZcRU+8Autzh6e7kY=";
hash = "sha256-n+A7SGfjzvB9NOt8kqi7DswKSjCTef5SJItWtFzNpwA=";
};
nativeBuildInputs = [
@@ -89,7 +89,7 @@ stdenv.mkDerivation (finalAttrs: {
dontStrip = true;
meta = with lib; {
meta = {
description = "Free and source-available fair-code licensed workflow automation tool";
longDescription = ''
Free and source-available fair-code licensed workflow automation tool.
@@ -97,12 +97,11 @@ stdenv.mkDerivation (finalAttrs: {
'';
homepage = "https://n8n.io";
changelog = "https://github.com/n8n-io/n8n/releases/tag/${finalAttrs.src.rev}";
maintainers = with maintainers; [
freezeboy
maintainers = with lib.maintainers; [
gepbird
];
license = licenses.sustainableUse;
license = lib.licenses.sustainableUse;
mainProgram = "n8n";
platforms = platforms.unix;
platforms = lib.platforms.unix;
};
})