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