qbittorrent: fix licenses

Both versions of GPL are applied in "-or-later" variants: https://github.com/qbittorrent/qBittorrent/commit/b3334e5fac5b004bd160c973d18b1745e9fd1265
This commit is contained in:
Acid Bong
2026-05-04 18:23:54 +03:00
parent 3739624824
commit 0c6a7eded1
+6 -4
View File
@@ -84,10 +84,12 @@ stdenv.mkDerivation (finalAttrs: {
description = "Featureful free software BitTorrent client";
homepage = "https://www.qbittorrent.org";
changelog = "https://github.com/qbittorrent/qBittorrent/blob/release-${finalAttrs.version}/Changelog";
license = with lib.licenses; [
gpl2Only
gpl3Only
];
license =
with lib.licenses;
AND [
gpl2Plus # code
gpl3Plus # assets
];
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [
Anton-Latukha