loudmouth: Apply digest auth fix from Arch Linux.

Digest authentication otherwise won't work with MCabber, no matter
whether it's SHA1 or MD5.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Tested-by: devhell <"^"@regexmail.net>
This commit is contained in:
aszlig 2015-01-03 04:40:12 +01:00
parent 3d7ff07258
commit 772cff097e
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -8,7 +8,15 @@ stdenv.mkDerivation rec {
sha256 = "1qr9z73i33y49pbpq6zy7q537g0iyc8sm56rjf0ylwcv01fkzacm";
};
patches = [ ./glib-2.32.patch ];
patches = [
./glib-2.32.patch
(fetchurl rec {
name = "01-fix-sasl-md5-digest-uri.patch";
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/"
+ "${name}?h=packages/loudmouth";
sha256 = "0y79vbklscgp8248iirllwmgk4q0wwyl3gmxz7l9frc2384xvanm";
})
];
configureFlags = "--with-ssl=openssl";