Merge pull request #188173 from wentasah/perl-crypt-licenses

perlPackages.Crypt{Blowfish,DES,IDEA}: Use correct license
This commit is contained in:
Stig 2022-08-24 15:52:44 +02:00 committed by GitHub
commit baff3fdd74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View file

@ -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";

View file

@ -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 ];
};
};