Added libmsn package

svn path=/nixpkgs/trunk/; revision=14206
This commit is contained in:
Sander van der Burg
2009-02-23 15:30:07 +00:00
parent 7c45744373
commit 17dc18fd56
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl, cmake, openssl}:
stdenv.mkDerivation {
name = "libmsn-4.0beta4";
src = fetchurl {
url = mirror://sourceforge/libmsn/libmsn-4.0-beta4.tar.bz2;
md5 = "b0155f01443644d7c4a60269e44d8dac";
};
buildInputs = [ cmake openssl ];
}