c298a5ba25
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
11 lines
287 B
Nix
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 ];
|
|
}
|