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

authored by

Aleksana and committed by
GitHub
4524441c b9065e83

+7 -8
+7 -8
pkgs/by-name/n8/n8n/package.nix
··· 18 18 19 19 stdenv.mkDerivation (finalAttrs: { 20 20 pname = "n8n"; 21 - version = "1.61.0"; 21 + version = "1.65.1"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "n8n-io"; 25 25 repo = "n8n"; 26 26 rev = "n8n@${finalAttrs.version}"; 27 - hash = "sha256-9hIwpid/uly7wUcrBgLkSw+Aah8OQ66MgrMQbs/5v1Y="; 27 + hash = "sha256-3fGsghGzqLb9B0qrqPuJV2pypd3kJVUrYohMe9quqG4="; 28 28 }; 29 29 30 30 pnpmDeps = pnpm.fetchDeps { 31 31 inherit (finalAttrs) pname version src; 32 - hash = "sha256-lZLWqlR6xq7DYpnydgJK8gL7WdfZcRU+8Autzh6e7kY="; 32 + hash = "sha256-n+A7SGfjzvB9NOt8kqi7DswKSjCTef5SJItWtFzNpwA="; 33 33 }; 34 34 35 35 nativeBuildInputs = [ ··· 89 89 90 90 dontStrip = true; 91 91 92 - meta = with lib; { 92 + meta = { 93 93 description = "Free and source-available fair-code licensed workflow automation tool"; 94 94 longDescription = '' 95 95 Free and source-available fair-code licensed workflow automation tool. ··· 97 97 ''; 98 98 homepage = "https://n8n.io"; 99 99 changelog = "https://github.com/n8n-io/n8n/releases/tag/${finalAttrs.src.rev}"; 100 - maintainers = with maintainers; [ 101 - freezeboy 100 + maintainers = with lib.maintainers; [ 102 101 gepbird 103 102 ]; 104 - license = licenses.sustainableUse; 103 + license = lib.licenses.sustainableUse; 105 104 mainProgram = "n8n"; 106 - platforms = platforms.unix; 105 + platforms = lib.platforms.unix; 107 106 }; 108 107 })