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
2 changed files with 8 additions and 3 deletions
+5
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";
+3 -3
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 ];
};
};