Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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>

aszlig 772cff09 3d7ff072

+9 -1
+9 -1
pkgs/development/libraries/loudmouth/default.nix
··· 8 8 sha256 = "1qr9z73i33y49pbpq6zy7q537g0iyc8sm56rjf0ylwcv01fkzacm"; 9 9 }; 10 10 11 - patches = [ ./glib-2.32.patch ]; 11 + patches = [ 12 + ./glib-2.32.patch 13 + (fetchurl rec { 14 + name = "01-fix-sasl-md5-digest-uri.patch"; 15 + url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/" 16 + + "${name}?h=packages/loudmouth"; 17 + sha256 = "0y79vbklscgp8248iirllwmgk4q0wwyl3gmxz7l9frc2384xvanm"; 18 + }) 19 + ]; 12 20 13 21 configureFlags = "--with-ssl=openssl"; 14 22