Merge pull request #333915 from jopejoe1/license

lib/licenses: some corrections

authored by Sandro and committed by GitHub 771c5644 2436607a

+10 -15
+7 -12
lib/licenses.nix
··· 229 }; 230 231 bsl11 = { 232 fullName = "Business Source License 1.1"; 233 url = "https://mariadb.com/bsl11"; 234 free = false; ··· 826 fullName = "PNG Reference Library version 2"; 827 }; 828 829 - libssh2 = { 830 - fullName = "libssh2 License"; 831 - url = "https://www.libssh2.org/license.html"; 832 - }; 833 - 834 libtiff = { 835 spdxId = "libtiff"; 836 fullName = "libtiff License"; ··· 872 url = "https://opensource.org/licenses/MirOS"; 873 }; 874 875 - # spdx.org does not (yet) differentiate between the X11 and Expat versions 876 - # for details see https://en.wikipedia.org/wiki/MIT_License#Various_versions 877 mit = { 878 spdxId = "MIT"; 879 fullName = "MIT License"; ··· 882 mit-feh = { 883 spdxId = "MIT-feh"; 884 fullName = "feh License"; 885 }; 886 887 mitAdvertising = { ··· 1314 zlib = { 1315 spdxId = "Zlib"; 1316 fullName = "zlib License"; 1317 - }; 1318 - 1319 - zsh = { 1320 - url = "https://github.com/zsh-users/zsh/blob/master/LICENCE"; 1321 - fullName = "Zsh License"; 1322 }; 1323 1324 zpl20 = {
··· 229 }; 230 231 bsl11 = { 232 + spdxId = "BUSL-1.1"; 233 fullName = "Business Source License 1.1"; 234 url = "https://mariadb.com/bsl11"; 235 free = false; ··· 827 fullName = "PNG Reference Library version 2"; 828 }; 829 830 libtiff = { 831 spdxId = "libtiff"; 832 fullName = "libtiff License"; ··· 868 url = "https://opensource.org/licenses/MirOS"; 869 }; 870 871 mit = { 872 spdxId = "MIT"; 873 fullName = "MIT License"; ··· 876 mit-feh = { 877 spdxId = "MIT-feh"; 878 fullName = "feh License"; 879 + }; 880 + 881 + mit-modern = { 882 + # Also known as Zsh license 883 + spdxId = "MIT-Modern-Variant"; 884 + fullName = "MIT License Modern Variant"; 885 }; 886 887 mitAdvertising = { ··· 1314 zlib = { 1315 spdxId = "Zlib"; 1316 fullName = "zlib License"; 1317 }; 1318 1319 zpl20 = {
+1 -1
pkgs/by-name/fr/freefilesync/package.nix
··· 131 meta = with lib; { 132 description = "Open Source File Synchronization & Backup Software"; 133 homepage = "https://freefilesync.org"; 134 - license = [ licenses.gpl3Only licenses.openssl licenses.curl licenses.libssh2 ]; 135 maintainers = with maintainers; [ wegank ]; 136 platforms = platforms.linux; 137 };
··· 131 meta = with lib; { 132 description = "Open Source File Synchronization & Backup Software"; 133 homepage = "https://freefilesync.org"; 134 + license = [ licenses.gpl3Only licenses.openssl licenses.curl licenses.bsd3 ]; 135 maintainers = with maintainers; [ wegank ]; 136 platforms = platforms.linux; 137 };
+1 -1
pkgs/development/libraries/libssh2/default.nix
··· 49 description = "Client-side C library implementing the SSH2 protocol"; 50 homepage = "https://www.libssh2.org"; 51 platforms = platforms.all; 52 - license = with licenses; [ bsd3 libssh2 ]; 53 maintainers = with maintainers; [ SuperSandro2000 ]; 54 }; 55 }
··· 49 description = "Client-side C library implementing the SSH2 protocol"; 50 homepage = "https://www.libssh2.org"; 51 platforms = platforms.all; 52 + license = with licenses; [ bsd3 ]; 53 maintainers = with maintainers; [ SuperSandro2000 ]; 54 }; 55 }
+1 -1
pkgs/shells/zsh/zsh-completions/default.nix
··· 27 bsd3 28 isc 29 mit 30 - zsh 31 ]; 32 platforms = lib.platforms.unix; 33 maintainers = [ lib.maintainers.olejorgenb ];
··· 27 bsd3 28 isc 29 mit 30 + mit-modern 31 ]; 32 platforms = lib.platforms.unix; 33 maintainers = [ lib.maintainers.olejorgenb ];