about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2023-01-24 11:29:22 +0100
committerGitHub <noreply@github.com>2023-01-24 11:29:22 +0100
commit353e2d957c7421cae4e3ab42739a0997ea7e310f (patch)
tree8bb866fe4b6357b29e8d138631cd1e14d6dfb26c
parent268c77c55de109a1c7d8a849e43899cc2954b276 (diff)
parenta146de830d8791c7c0f8177fd9f68b5745e49fcc (diff)
Merge pull request #212408 from raboof/imapsync-fix-license
imapsync: fix license
-rw-r--r--lib/licenses.nix7
-rw-r--r--pkgs/tools/networking/imapsync/default.nix2
2 files changed, 7 insertions, 2 deletions
diff --git a/lib/licenses.nix b/lib/licenses.nix
index e88054134a3dc..f22d1401410b6 100644
--- a/lib/licenses.nix
+++ b/lib/licenses.nix
@@ -715,7 +715,12 @@ in mkLicense lset) ({
 
   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 = {
diff --git a/pkgs/tools/networking/imapsync/default.nix b/pkgs/tools/networking/imapsync/default.nix
index 5604145a182ee..0fb519ad5af7d 100644
--- a/pkgs/tools/networking/imapsync/default.nix
+++ b/pkgs/tools/networking/imapsync/default.nix
@@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Mail folder synchronizer between IMAP servers";
     homepage = "https://imapsync.lamiral.info/";
-    license = licenses.wtfpl;
+    license = licenses.nlpl;
     maintainers = with maintainers; [ pSub ];
     platforms = platforms.unix;
   };