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>
This commit is contained in:
parent
c935f5e0ad
commit
bf9447721d
@ -26,8 +26,8 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkg-config texinfo ];
|
||||
|
||||
configureFlags =
|
||||
[ "--sysconfdir=/etc" ] ++ lib.optional stdenv.isDarwin [ "--with-macosx-keyring" ];
|
||||
configureFlags = [ "--sysconfdir=/etc" "--with-libgsasl" ]
|
||||
++ lib.optional stdenv.isDarwin [ "--with-macosx-keyring" ];
|
||||
|
||||
postInstall = ''
|
||||
install -d $out/share/doc/${pname}/scripts
|
||||
|
Loading…
Reference in New Issue
Block a user