Merge pull request #187842 from helsinki-systems/fix/perl-meta
perlPackages: Redo all metadata
This commit is contained in:
commit
54f32b4c7b
6 changed files with 2753 additions and 1112 deletions
|
@ -693,6 +693,11 @@ in mkLicense lset) ({
|
|||
fullName = "SIL Open Font License 1.1";
|
||||
};
|
||||
|
||||
oml = {
|
||||
spdxId = "OML";
|
||||
fullName = "Open Market License";
|
||||
};
|
||||
|
||||
openldap = {
|
||||
spdxId = "OLDAP-2.8";
|
||||
fullName = "Open LDAP Public License v2.8";
|
||||
|
@ -824,6 +829,11 @@ in mkLicense lset) ({
|
|||
fullName = "TCL/TK License";
|
||||
};
|
||||
|
||||
ucd = {
|
||||
fullName = "Unicode Character Database License";
|
||||
url = "https://fedoraproject.org/wiki/Licensing:UCD";
|
||||
};
|
||||
|
||||
ufl = {
|
||||
fullName = "Ubuntu Font License 1.0";
|
||||
url = "https://ubuntu.com/legal/font-licence";
|
||||
|
|
|
@ -15,9 +15,10 @@ buildPerlPackage {
|
|||
|
||||
doCheck = false; # TODO: almost all tests fail ... is this a real problem?
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
description = "MNI MINC perllib (not used much anymore)";
|
||||
homepage = "https://github.com/BIC-MNI/mni-perllib";
|
||||
license = with licenses; [ artistic1 gpl1Plus ];
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
license = with lib.licenses; [ artistic1 gpl1Plus ];
|
||||
maintainers = with lib.maintainers; [ bcdarwin ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -23,10 +23,10 @@ buildPerlPackage rec {
|
|||
shortenPerlShebang $(grep -l "/bin/env perl" $out/bin/*)
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Collection of advanced command-line tools to perform a variety of MySQL and system tasks.";
|
||||
meta = {
|
||||
description = "Collection of advanced command-line tools to perform a variety of MySQL and system tasks";
|
||||
homepage = "https://www.percona.com/software/database-tools/percona-toolkit";
|
||||
license = with licenses; [ gpl2 ];
|
||||
maintainers = with maintainers; [ izorkin ];
|
||||
license = with lib.licenses; [ gpl2Only ];
|
||||
maintainers = with lib.maintainers; [ izorkin ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -30,8 +30,8 @@ buildPerlPackage rec {
|
|||
done
|
||||
'';
|
||||
meta = {
|
||||
homepage = "https://po4a.org/";
|
||||
description = "Tools for helping translation of documentation";
|
||||
license = lib.licenses.gpl2;
|
||||
homepage = "https://po4a.org";
|
||||
license = with lib.licenses; [ gpl2Only ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ buildPerlPackage rec {
|
|||
meta = with lib; {
|
||||
description = "A Perl module for stripping bits of non-deterministic information";
|
||||
homepage = "https://reproducible-builds.org/";
|
||||
license = licenses.gpl3;
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
};
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue