Adding MLDonkey multiprotocol data distribution client - patch by Lluis Batlle

svn path=/nixpkgs/trunk/; revision=13702
This commit is contained in:
Michael Raskin 2009-01-04 17:35:11 +00:00
parent 9d67550148
commit 73b0973818
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{stdenv, fetchurl, ocaml, zlib, ncurses}:
stdenv.mkDerivation {
name = "mldonkey-2.9.6";
src = fetchurl {
url = mirror://sourceforge/mldonkey/mldonkey-2.9.6.tar.bz2;
sha256 = "27cc8ae95aa7a2934b6cc9b077d10ca6a776496c051d8f35d60f1e73d38fd505";
};
meta = {
description = "Client for many p2p networks, with multiple frontends";
homepage = http://mldonkey.sourceforge.net/;
};
buildInputs = [ ocaml zlib ncurses ];
configureFlags = "--disable-gd --disable-gui";
}

View File

@ -993,6 +993,10 @@ let
inherit fetchurl stdenv;
};
mldonkey = import ../applications/networking/p2p/mldonkey {
inherit fetchurl stdenv ocaml zlib ncurses;
};
mpage = import ../tools/text/mpage {
inherit fetchurl stdenv;
};