Skip to content

Commit

Permalink
mutt: add Kerberos support
Browse files Browse the repository at this point in the history
  • Loading branch information
catern committed Sep 4, 2017
1 parent f01f86c commit bf33bf5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkgs/applications/networking/mailreaders/mutt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
, openssl ? null
, cyrus_sasl ? null
, gpgme ? null
, kerberos ? null
, headerCache ? true
, sslSupport ? true
, saslSupport ? true
, gpgmeSupport ? true
, imapSupport ? true
, withSidebar ? true
, gssSupport ? true
}:

assert headerCache -> gdbm != null;
Expand All @@ -35,6 +37,7 @@ stdenv.mkDerivation rec {
[ ncurses which perl ]
++ optional headerCache gdbm
++ optional sslSupport openssl
++ optional gssSupport kerberos
++ optional saslSupport cyrus_sasl
++ optional gpgmeSupport gpgme;

Expand All @@ -58,6 +61,7 @@ stdenv.mkDerivation rec {
# I set the value 'mailbox' because it is a default in the configure script
"--with-homespool=mailbox"
] ++ optional sslSupport "--with-ssl"
++ optional gssSupport "--with-gss"
++ optional saslSupport "--with-sasl";

meta = {
Expand Down

0 comments on commit bf33bf5

Please sign in to comment.