From 58c0796598adb70b3c3cfe5de7d3a1b03649a630 Mon Sep 17 00:00:00 2001 From: DarkOnion0 Date: Thu, 28 May 2026 12:35:09 +0200 Subject: [PATCH] appflowy: update license --- pkgs/by-name/ap/appflowy/package.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ap/appflowy/package.nix b/pkgs/by-name/ap/appflowy/package.nix index c303178cd1d4..fb368880b132 100644 --- a/pkgs/by-name/ap/appflowy/package.nix +++ b/pkgs/by-name/ap/appflowy/package.nix @@ -126,7 +126,19 @@ stdenvNoCC.mkDerivation (finalAttrs: { description = "Open-source alternative to Notion"; homepage = "https://www.appflowy.io/"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.agpl3Only; + license = with lib.licenses; [ + # The LICENSE file clearly claims the project is using AGPL-3.0 + # + # c.f. https://github.com/AppFlowy-IO/AppFlowy/blob/main/LICENSE + agpl3Only + # But, the source code has not been synced with any major release since + # the end of 2025. One of the core team member said that they will "merge + # Flutter code back into this public repository at a later stage". However, + # 2 months later, nothing has changed. + # + # c.f. https://github.com/AppFlowy-IO/AppFlowy/issues/8479#issuecomment-4053301446 + unfreeRedistributable + ]; changelog = "https://github.com/AppFlowy-IO/appflowy/releases/tag/${finalAttrs.version}"; maintainers = with lib.maintainers; [ darkonion0 ]; platforms = [ "x86_64-linux" ] ++ lib.platforms.darwin;