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
This commit is contained in:
Lorenzo Manacorda 2017-04-10 16:00:25 +02:00 committed by Jörg Thalheim
parent 92ab8b0ee7
commit 5108c4c7b2
2 changed files with 7 additions and 6 deletions

View File

@ -97,10 +97,11 @@ stdenv.mkDerivation rec {
''; '';
dontGzipMan = true; # already compressed dontGzipMan = true; # already compressed
meta = { meta = with stdenv.lib; {
description = "Mail indexer"; description = "Mail indexer";
license = stdenv.lib.licenses.gpl3; homepage = https://notmuchmail.org/;
maintainers = with stdenv.lib.maintainers; [ chaoflow garbas ]; license = licenses.gpl3;
platforms = stdenv.lib.platforms.unix; maintainers = with maintainers; [ chaoflow garbas ];
platforms = platforms.unix;
}; };
} }

View File

@ -38,8 +38,8 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
inherit version; inherit version;
description = "Mutt support for notmuch"; description = "Mutt support for notmuch";
homepage = http://notmuchmua.org/; homepage = https://notmuchmail.org/;
license = with licenses; mit; license = with licenses; gpl3;
maintainers = with maintainers; [ peterhoeg ]; maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix; platforms = platforms.unix;
}; };