diff options
author | ng0 <ng0@infotropique.org> | 2017-10-28 16:23:01 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-10-28 21:54:36 +0200 |
commit | 32fc1ec3d5e33bef4ce54e241f640f9a6b10a7b3 (patch) | |
tree | e4ef9661bd8fa391463bc628f425e43353039703 /gnu/packages/mail.scm | |
parent | 7de23b02a1897a8d48fed934bafe00c95924f65a (diff) | |
download | guix-32fc1ec3d5e33bef4ce54e241f640f9a6b10a7b3.tar guix-32fc1ec3d5e33bef4ce54e241f640f9a6b10a7b3.tar.gz |
gnu: neomutt: Do not inherit mutt.
* gnu/packages/mail.scm (neomutt): Remove (inherit mutt),
add 'build-system' and 'license'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index c94c5f8f09..ed095dd9d4 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -275,7 +275,6 @@ operating systems.") (define-public neomutt (package - (inherit mutt) (name "neomutt") (version "20171027") (source @@ -286,6 +285,7 @@ operating systems.") (sha256 (base32 "10z523cy3s6syh0mwpsncl87wrvyzsk99y7nzicwvx6y3hmdw01d")))) + (build-system gnu-build-system) (inputs `(("cyrus-sasl" ,cyrus-sasl) ("gdbm" ,gdbm) @@ -346,7 +346,8 @@ operating systems.") (synopsis "Command-line mail reader based on Mutt") (description "NeoMutt is a command-line mail reader which is based on mutt. -It adds a large amount of new and improved features to mutt."))) +It adds a large amount of new and improved features to mutt.") + (license gpl2+))) (define-public gmime (package |