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
wip/yesman
Lorenzo Manacorda 7 years ago committed by Jörg Thalheim
parent 92ab8b0ee7
commit 5108c4c7b2
  1. 9
      pkgs/applications/networking/mailreaders/notmuch/default.nix
  2. 4
      pkgs/applications/networking/mailreaders/notmuch/mutt.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;
};
}

@ -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;
};

Loading…
Cancel
Save