Merge pull request #313769 from yVieta/zsh-completion

zsh-completions: add licenses
This commit is contained in:
Masum Reza
2024-06-20 23:21:56 +05:30
committed by GitHub
2 changed files with 17 additions and 6 deletions
+10 -4
View File
@@ -1278,11 +1278,21 @@ in mkLicense lset) ({
fullName = "xinetd License";
};
xskat = {
spdxId = "XSkat";
fullName = "XSkat License";
};
zlib = {
spdxId = "Zlib";
fullName = "zlib License";
};
zsh = {
url = "https://github.com/zsh-users/zsh/blob/master/LICENCE";
fulllName = "Zsh License";
};
zpl20 = {
spdxId = "ZPL-2.0";
fullName = "Zope Public License 2.0";
@@ -1293,10 +1303,6 @@ in mkLicense lset) ({
fullName = "Zope Public License 2.1";
};
xskat = {
spdxId = "XSkat";
fullName = "XSkat License";
};
} // {
# TODO: remove legacy aliases
apsl10 = {
+7 -2
View File
@@ -22,8 +22,13 @@ stdenv.mkDerivation rec {
meta = {
description = "Additional completion definitions for zsh";
homepage = "https://github.com/zsh-users/zsh-completions";
license = lib.licenses.free;
license = with lib.licenses; [
asl20
bsd3
isc
mit
zsh
];
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.olejorgenb ];
};