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:
parent
92ab8b0ee7
commit
5108c4c7b2
2 changed files with 7 additions and 6 deletions
|
@ -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…
Reference in a new issue