Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0bce15bc5e77
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a9e60689f48a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 4, 2017

  1. mutt: add Kerberos support

    catern authored Sep 4, 2017
    Copy the full SHA
    bf33bf5 View commit details

Commits on Sep 5, 2017

  1. Merge pull request #28995 from catern/patch-3

    mutt: add Kerberos support
    Mic92 authored Sep 5, 2017
    Copy the full SHA
    a9e6068 View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 pkgs/applications/networking/mailreaders/mutt/default.nix
4 changes: 4 additions & 0 deletions pkgs/applications/networking/mailreaders/mutt/default.nix
Original file line number Diff line number Diff line change
@@ -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;
@@ -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;

@@ -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 = {