various: clean up licenses for packages i maintain (#512053)

This commit is contained in:
Jo
2026-04-23 07:51:51 +00:00
committed by GitHub
6 changed files with 36 additions and 25 deletions
@@ -30,7 +30,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
mainProgram = "hbd";
homepage = "https://github.com/xtream1101/humblebundle-downloader";
changelog = "https://github.com/xtream1101/humblebundle-downloader/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = with lib.licenses; [ mit ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jopejoe1 ];
};
})
+1 -1
View File
@@ -43,7 +43,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
mainProgram = "itch-dl";
homepage = "https://github.com/DragoonAethis/itch-dl";
changelog = "https://github.com/DragoonAethis/itch-dl/releases/tag/${finalAttrs.src.tag}";
license = with lib.licenses; [ mit ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jopejoe1 ];
};
})
+7 -5
View File
@@ -66,11 +66,13 @@ stdenv.mkDerivation (finalAttrs: {
description = "Small speech recognizer";
homepage = "https://github.com/cmusphinx/pocketsphinx";
changelog = "https://github.com/cmusphinx/pocketsphinx/blob/v${finalAttrs.version}/NEWS";
license = with lib.licenses; [
bsd2
bsd3
mit
];
license =
with lib.licenses;
AND [
bsd2
bsd3
mit
];
pkgConfigModules = [ "pocketsphinx" ];
mainProgram = "pocketsphinx";
maintainers = with lib.maintainers; [ jopejoe1 ];
+6 -4
View File
@@ -34,10 +34,12 @@ stdenvNoCC.mkDerivation (finalAttrs: {
meta = {
description = "GNU autoconf macros shared across X.Org projects";
homepage = "https://gitlab.freedesktop.org/xorg/util/macros";
license = with lib.licenses; [
hpndSellVariant
mit
];
license =
with lib.licenses;
AND [
hpndSellVariant
mit
];
maintainers = with lib.maintainers; [
raboof
jopejoe1
+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 ];
};
})
@@ -44,11 +44,13 @@ buildPythonPackage rec {
description = "Small speech recognizer";
homepage = "https://github.com/cmusphinx/pocketsphinx";
changelog = "https://github.com/cmusphinx/pocketsphinx/blob/v${version}/NEWS";
license = with lib.licenses; [
bsd2
bsd3
mit
];
license =
with lib.licenses;
AND [
bsd2
bsd3
mit
];
maintainers = with lib.maintainers; [ jopejoe1 ];
};
}