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

View file

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