mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 12:15:34 +03:00
ipxe: correct licensing information (#390934)
This commit is contained in:
commit
40a774220d
2 changed files with 14 additions and 1 deletions
|
@ -651,6 +651,11 @@ lib.mapAttrs mkLicense (
|
||||||
url = "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception";
|
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 = {
|
gpl2Oss = {
|
||||||
fullName = "GNU General Public License version 2 only (with OSI approved licenses linking exception)";
|
fullName = "GNU General Public License version 2 only (with OSI approved licenses linking exception)";
|
||||||
url = "https://www.mysql.com/about/legal/licensing/foss-exception";
|
url = "https://www.mysql.com/about/legal/licensing/foss-exception";
|
||||||
|
|
|
@ -142,7 +142,15 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
meta = {
|
meta = {
|
||||||
description = "Network boot firmware";
|
description = "Network boot firmware";
|
||||||
homepage = "https://ipxe.org/";
|
homepage = "https://ipxe.org/";
|
||||||
license = lib.licenses.gpl2Only;
|
license = with lib.licenses; [
|
||||||
|
bsd2
|
||||||
|
bsd3
|
||||||
|
gpl2Only
|
||||||
|
gpl2UBDLPlus
|
||||||
|
isc
|
||||||
|
mit
|
||||||
|
mpl11
|
||||||
|
];
|
||||||
platforms = lib.platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
maintainers = with lib.maintainers; [ sigmasquadron ];
|
maintainers = with lib.maintainers; [ sigmasquadron ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue