Version bumb of libmsn to 4.2.1.

This fixes the problem that with the previous version a connection with microsoft services could not be established anymore.

svn path=/nixpkgs/trunk/; revision=31786
This commit is contained in:
Arie Middelkoop 2012-01-21 23:59:36 +00:00
parent 9b740035a4
commit c298a5ba25

View File

@ -1,12 +1,10 @@
{stdenv, fetchurl, cmake, openssl}:
stdenv.mkDerivation rec {
name = "libmsn-4.1";
name = "libmsn-4.2.1";
src = fetchurl {
url = "mirror://sourceforge/libmsn/${name}.tar.bz2";
sha256 = "0p3c3gidnq4ai697dgg930hm7aap4176sbq7w7nn0mxg4rg5gwfx";
sha256 = "338369c7455b123e84b9a7a858ac0ed2b1dc32e6529f460fdc01d28869a20fde";
};
patches = [ ./libmsn-4.1-openssl-1.patch ];
patchFlags = "-p0";
buildInputs = [ cmake openssl ];
}