Merge pull request #188173 from wentasah/perl-crypt-licenses
perlPackages.Crypt{Blowfish,DES,IDEA}: Use correct license
This commit is contained in:
commit
baff3fdd74
2 changed files with 8 additions and 3 deletions
|
@ -148,6 +148,11 @@ in mkLicense lset) ({
|
|||
fullName = ''BSD 4-clause "Original" or "Old" License'';
|
||||
};
|
||||
|
||||
bsdOriginalShortened = {
|
||||
spdxId = "BSD-4-Clause-Shortened";
|
||||
fullName = "BSD 4 Clause Shortened";
|
||||
};
|
||||
|
||||
bsdOriginalUC = {
|
||||
spdxId = "BSD-4-Clause-UC";
|
||||
fullName = "BSD 4-Clause University of California-Specific";
|
||||
|
|
|
@ -4619,7 +4619,7 @@ let
|
|||
};
|
||||
meta = {
|
||||
description = "Perl Blowfish encryption module";
|
||||
license = with lib.licenses; [ unfreeRedistributable ];
|
||||
license = with lib.licenses; [ bsdOriginalShortened ];
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -4679,7 +4679,7 @@ let
|
|||
};
|
||||
meta = {
|
||||
description = "Perl DES encryption module";
|
||||
license = with lib.licenses; [ unfreeRedistributable ];
|
||||
license = with lib.licenses; [ bsdOriginalShortened ];
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -4795,7 +4795,7 @@ let
|
|||
};
|
||||
meta = {
|
||||
description = "Perl interface to IDEA block cipher";
|
||||
license = with lib.licenses; [ unfreeRedistributable ];
|
||||
license = with lib.licenses; [ bsdOriginalShortened ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue