about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/notmuch
diff options
context:
space:
mode:
authorLorenzo Manacorda <lorenzo@mailbox.org>2017-04-10 16:00:25 +0200
committerJörg Thalheim <Mic92@users.noreply.github.com>2017-04-10 16:00:25 +0200
commit5108c4c7b277c9adaa97173e31ffe420aff31f11 (patch)
tree8846c021d23adc53508477d136adb7db97008350 /pkgs/applications/networking/mailreaders/notmuch
parent92ab8b0ee7246fcaf53cb13443074fa6723f4334 (diff)
downloadnixlib-5108c4c7b277c9adaa97173e31ffe420aff31f11.tar
nixlib-5108c4c7b277c9adaa97173e31ffe420aff31f11.tar.gz
nixlib-5108c4c7b277c9adaa97173e31ffe420aff31f11.tar.bz2
nixlib-5108c4c7b277c9adaa97173e31ffe420aff31f11.tar.lz
nixlib-5108c4c7b277c9adaa97173e31ffe420aff31f11.tar.xz
nixlib-5108c4c7b277c9adaa97173e31ffe420aff31f11.tar.zst
nixlib-5108c4c7b277c9adaa97173e31ffe420aff31f11.zip
notmuch: fix homepage and notmuch-mutt license (#24777)
* notmuch: fix homepage and notmuch-mutt license

notmuch-mutt's license is GPLv3. might have been changed when it was upstreamed.

* fix scheme

* fix typo in url

* fix field alignment

* use with to make statements shorter
Diffstat (limited to 'pkgs/applications/networking/mailreaders/notmuch')
-rw-r--r--pkgs/applications/networking/mailreaders/notmuch/default.nix9
-rw-r--r--pkgs/applications/networking/mailreaders/notmuch/mutt.nix4
2 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/networking/mailreaders/notmuch/default.nix b/pkgs/applications/networking/mailreaders/notmuch/default.nix
index 212d366facb3..7c48075704e3 100644
--- a/pkgs/applications/networking/mailreaders/notmuch/default.nix
+++ b/pkgs/applications/networking/mailreaders/notmuch/default.nix
@@ -97,10 +97,11 @@ stdenv.mkDerivation rec {
   '';
   dontGzipMan = true; # already compressed
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Mail indexer";
-    license = stdenv.lib.licenses.gpl3;
-    maintainers = with stdenv.lib.maintainers; [ chaoflow garbas ];
-    platforms = stdenv.lib.platforms.unix;
+    homepage    = https://notmuchmail.org/;
+    license     = licenses.gpl3;
+    maintainers = with maintainers; [ chaoflow garbas ];
+    platforms   = platforms.unix;
   };
 }
diff --git a/pkgs/applications/networking/mailreaders/notmuch/mutt.nix b/pkgs/applications/networking/mailreaders/notmuch/mutt.nix
index 6d08ad724b27..410e5e10ceb6 100644
--- a/pkgs/applications/networking/mailreaders/notmuch/mutt.nix
+++ b/pkgs/applications/networking/mailreaders/notmuch/mutt.nix
@@ -38,8 +38,8 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     inherit version;
     description = "Mutt support for notmuch";
-    homepage    = http://notmuchmua.org/;
-    license     = with licenses; mit;
+    homepage    = https://notmuchmail.org/;
+    license     = with licenses; gpl3;
     maintainers = with maintainers; [ peterhoeg ];
     platforms   = platforms.unix;
   };