Skip to content

Commit

Permalink
hiddify-app: fix incorrect license
Browse files Browse the repository at this point in the history
  • Loading branch information
aucub committed Jan 4, 2025
1 parent 3640a30 commit eb37fda
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pkgs/by-name/hi/hiddify-app/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ let
description = "Multi-platform auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria, Reality, Trojan, SSH etc";
homepage = "https://hiddify.com";
mainProgram = "HiddifyCli";
license = lib.licenses.cc-by-nc-sa-40;
license = with lib.licenses; [
unfree # upstream adds non-free additional conditions. https://github.com/hiddify/hiddify-core/blob/f993a57755c37e08b02042037cbbf508c66c51f9/LICENSE.md#summary
gpl3Only
];
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ aucub ];
};
Expand Down Expand Up @@ -174,7 +177,10 @@ flutter.buildFlutterApplication {
description = "Multi-platform auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria, Reality, Trojan, SSH etc";
homepage = "https://hiddify.com";
mainProgram = "hiddify";
license = lib.licenses.cc-by-nc-sa-40;
license = with lib.licenses; [
unfree # upstream adds non-free additional conditions. https://github.com/hiddify/hiddify-app/blob/0f6b15057f626016fcd7a0c075f1c8c2f606110a/LICENSE.md#additional-conditions-to-gpl-v3
gpl3Only
];
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ aucub ];
};
Expand Down

0 comments on commit eb37fda

Please sign in to comment.