forked from mirrors/nixpkgs
Merge pull request #212408 from raboof/imapsync-fix-license
imapsync: fix license
This commit is contained in:
commit
353e2d957c
|
@ -715,7 +715,12 @@ in mkLicense lset) ({
|
||||||
|
|
||||||
ncsa = {
|
ncsa = {
|
||||||
spdxId = "NCSA";
|
spdxId = "NCSA";
|
||||||
fullName = "University of Illinois/NCSA Open Source License";
|
fullName = "University of Illinois/NCSA Open Source License";
|
||||||
|
};
|
||||||
|
|
||||||
|
nlpl = {
|
||||||
|
spdxId = "NLPL";
|
||||||
|
fullName = "No Limit Public License";
|
||||||
};
|
};
|
||||||
|
|
||||||
nposl3 = {
|
nposl3 = {
|
||||||
|
|
|
@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Mail folder synchronizer between IMAP servers";
|
description = "Mail folder synchronizer between IMAP servers";
|
||||||
homepage = "https://imapsync.lamiral.info/";
|
homepage = "https://imapsync.lamiral.info/";
|
||||||
license = licenses.wtfpl;
|
license = licenses.nlpl;
|
||||||
maintainers = with maintainers; [ pSub ];
|
maintainers = with maintainers; [ pSub ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue