zvbi: make use of compound licenses and cleanup

This commit is contained in:
Jo
2026-04-21 13:01:04 +02:00
committed by jopejoe1
parent 213d0715db
commit ccf16a792a
+14 -9
View File
@@ -66,15 +66,20 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/zapping-vbi/zvbi";
changelog = "https://github.com/zapping-vbi/zvbi/blob/${finalAttrs.src.rev}/ChangeLog";
pkgConfigModules = [ "zvbi-0.2" ];
license = with lib.licenses; [
bsd2
bsd3
gpl2
gpl2Plus
lgpl21Plus
lgpl2Plus
mit
];
license =
with lib.licenses;
AND [
bsd2
(OR [
bsd3
gpl2Plus
])
gpl2Only
gpl2Plus
lgpl21Plus
lgpl2Plus
mit
];
maintainers = with lib.maintainers; [ jopejoe1 ];
};
})