nixpkgs/pkgs/development/libraries/libmsn/default.nix
Arie Middelkoop c298a5ba25 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
2012-01-21 23:59:36 +00:00

11 lines
287 B
Nix

{stdenv, fetchurl, cmake, openssl}:
stdenv.mkDerivation rec {
name = "libmsn-4.2.1";
src = fetchurl {
url = "mirror://sourceforge/libmsn/${name}.tar.bz2";
sha256 = "338369c7455b123e84b9a7a858ac0ed2b1dc32e6529f460fdc01d28869a20fde";
};
buildInputs = [ cmake openssl ];
}