Merge pull request #85517 from prusnak/licenses

lib/licenses: use https where possible

authored by

Léo Gaspard and committed by
GitHub
73d4b9c0 2d6f7344

+15 -15
+15 -15
lib/licenses.nix
··· 2 let 3 4 spdx = lic: lic // { 5 - url = "http://spdx.org/licenses/${lic.spdxId}.html"; 6 }; 7 8 in ··· 40 41 amazonsl = { 42 fullName = "Amazon Software License"; 43 - url = "http://aws.amazon.com/asl/"; 44 free = false; 45 }; 46 47 amd = { 48 fullName = "AMD License Agreement"; 49 - url = "http://developer.amd.com/amd-license-agreement/"; 50 free = false; 51 }; 52 ··· 230 231 eapl = { 232 fullName = "EPSON AVASYS PUBLIC LICENSE"; 233 - url = "http://avasys.jp/hp/menu000000700/hpg000000603.htm"; 234 free = false; 235 }; 236 ··· 293 294 ffsl = { 295 fullName = "Floodgap Free Software License"; 296 - url = "http://www.floodgap.com/software/ffsl/license.html"; 297 free = false; 298 }; 299 ··· 370 # Intel's license, seems free 371 iasl = { 372 fullName = "iASL"; 373 - url = "http://www.calculate-linux.org/packages/licenses/iASL"; 374 }; 375 376 ijg = spdx { ··· 385 386 inria-compcert = { 387 fullName = "INRIA Non-Commercial License Agreement for the CompCert verified compiler"; 388 - url = "http://compcert.inria.fr/doc/LICENSE"; 389 free = false; 390 }; 391 392 inria-icesl = { 393 fullName = "INRIA Non-Commercial License Agreement for IceSL"; 394 - url = "http://shapeforge.loria.fr/icesl/EULA_IceSL_binary.pdf"; 395 free = false; 396 }; 397 ··· 469 470 llgpl21 = { 471 fullName = "Lisp LGPL; GNU Lesser General Public License version 2.1 with Franz Inc. preamble for clarification of LGPL terms in context of Lisp"; 472 - url = "http://opensource.franz.com/preamble.html"; 473 }; 474 475 lppl12 = spdx { ··· 493 }; 494 495 # spdx.org does not (yet) differentiate between the X11 and Expat versions 496 - # for details see http://en.wikipedia.org/wiki/MIT_License#Various_versions 497 mit = spdx { 498 spdxId = "MIT"; 499 fullName = "MIT License"; ··· 596 psfl = spdx { 597 spdxId = "Python-2.0"; 598 fullName = "Python Software Foundation License version 2"; 599 - #url = "http://docs.python.org/license.html"; 600 }; 601 602 publicDomain = { ··· 620 621 qwt = { 622 fullName = "Qwt License, Version 1.0"; 623 - url = "http://qwt.sourceforge.net/qwtlicense.html"; 624 }; 625 626 ruby = spdx { ··· 646 smail = { 647 shortName = "smail"; 648 fullName = "SMAIL General Public License"; 649 - url = "http://metadata.ftp-master.debian.org/changelogs/main/d/debianutils/debianutils_4.8.1_copyright"; 650 }; 651 652 sspl = { ··· 663 664 ufl = { 665 fullName = "Ubuntu Font License 1.0"; 666 - url = "http://font.ubuntu.com/ufl/ubuntu-font-licence-1.0.txt"; 667 }; 668 669 unfree = { ··· 740 741 xfig = { 742 fullName = "xfig"; 743 - url = "http://mcj.sourceforge.net/authors.html#xfig"; 744 }; 745 746 zlib = spdx {
··· 2 let 3 4 spdx = lic: lic // { 5 + url = "https://spdx.org/licenses/${lic.spdxId}.html"; 6 }; 7 8 in ··· 40 41 amazonsl = { 42 fullName = "Amazon Software License"; 43 + url = "https://aws.amazon.com/asl/"; 44 free = false; 45 }; 46 47 amd = { 48 fullName = "AMD License Agreement"; 49 + url = "https://developer.amd.com/amd-license-agreement/"; 50 free = false; 51 }; 52 ··· 230 231 eapl = { 232 fullName = "EPSON AVASYS PUBLIC LICENSE"; 233 + url = "https://avasys.jp/hp/menu000000700/hpg000000603.htm"; 234 free = false; 235 }; 236 ··· 293 294 ffsl = { 295 fullName = "Floodgap Free Software License"; 296 + url = "https://www.floodgap.com/software/ffsl/license.html"; 297 free = false; 298 }; 299 ··· 370 # Intel's license, seems free 371 iasl = { 372 fullName = "iASL"; 373 + url = "https://old.calculate-linux.org/packages/licenses/iASL"; 374 }; 375 376 ijg = spdx { ··· 385 386 inria-compcert = { 387 fullName = "INRIA Non-Commercial License Agreement for the CompCert verified compiler"; 388 + url = "http://compcert.inria.fr/doc/LICENSE"; # https is broken 389 free = false; 390 }; 391 392 inria-icesl = { 393 fullName = "INRIA Non-Commercial License Agreement for IceSL"; 394 + url = "http://shapeforge.loria.fr/icesl/EULA_IceSL_binary.pdf"; # https is broken 395 free = false; 396 }; 397 ··· 469 470 llgpl21 = { 471 fullName = "Lisp LGPL; GNU Lesser General Public License version 2.1 with Franz Inc. preamble for clarification of LGPL terms in context of Lisp"; 472 + url = "https://opensource.franz.com/preamble.html"; 473 }; 474 475 lppl12 = spdx { ··· 493 }; 494 495 # spdx.org does not (yet) differentiate between the X11 and Expat versions 496 + # for details see https://en.wikipedia.org/wiki/MIT_License#Various_versions 497 mit = spdx { 498 spdxId = "MIT"; 499 fullName = "MIT License"; ··· 596 psfl = spdx { 597 spdxId = "Python-2.0"; 598 fullName = "Python Software Foundation License version 2"; 599 + url = "https://docs.python.org/license.html"; 600 }; 601 602 publicDomain = { ··· 620 621 qwt = { 622 fullName = "Qwt License, Version 1.0"; 623 + url = "https://qwt.sourceforge.io/qwtlicense.html"; 624 }; 625 626 ruby = spdx { ··· 646 smail = { 647 shortName = "smail"; 648 fullName = "SMAIL General Public License"; 649 + url = "https://sources.debian.org/copyright/license/debianutils/4.9.1/"; 650 }; 651 652 sspl = { ··· 663 664 ufl = { 665 fullName = "Ubuntu Font License 1.0"; 666 + url = "https://ubuntu.com/legal/font-licence"; 667 }; 668 669 unfree = { ··· 740 741 xfig = { 742 fullName = "xfig"; 743 + url = "http://mcj.sourceforge.net/authors.html#xfig"; # https is broken 744 }; 745 746 zlib = spdx {