msmtp: Fix GSSAPI support

We already have gsasl as a build input, but it was not being used
because we were missing the --with-libgsasl configure flag.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>

+2 -2
+2 -2
pkgs/applications/networking/msmtp/default.nix
··· 26 27 nativeBuildInputs = [ autoreconfHook pkg-config texinfo ]; 28 29 - configureFlags = 30 - [ "--sysconfdir=/etc" ] ++ lib.optional stdenv.isDarwin [ "--with-macosx-keyring" ]; 31 32 postInstall = '' 33 install -d $out/share/doc/${pname}/scripts
··· 26 27 nativeBuildInputs = [ autoreconfHook pkg-config texinfo ]; 28 29 + configureFlags = [ "--sysconfdir=/etc" "--with-libgsasl" ] 30 + ++ lib.optional stdenv.isDarwin [ "--with-macosx-keyring" ]; 31 32 postInstall = '' 33 install -d $out/share/doc/${pname}/scripts