ipxe: correct licensing information (#390934)

This commit is contained in:
Aleksana 2025-05-15 21:42:59 +08:00 committed by GitHub
commit 40a774220d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 1 deletions

View file

@ -651,6 +651,11 @@ lib.mapAttrs mkLicense (
url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
};
gpl2UBDLPlus = {
fullName = "GNU General Public License v3.0 or later (with UBDL exception)";
url = "https://spdx.org/licenses/UBDL-exception.html";
};
gpl2Oss = {
fullName = "GNU General Public License version 2 only (with OSI approved licenses linking exception)";
url = "https://www.mysql.com/about/legal/licensing/foss-exception";

View file

@ -142,7 +142,15 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Network boot firmware";
homepage = "https://ipxe.org/";
license = lib.licenses.gpl2Only;
license = with lib.licenses; [
bsd2
bsd3
gpl2Only
gpl2UBDLPlus
isc
mit
mpl11
];
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ sigmasquadron ];
};