Adding MLDonkey multiprotocol data distribution client - patch by Lluis Batlle
svn path=/nixpkgs/trunk/; revision=13702
This commit is contained in:
parent
9d67550148
commit
73b0973818
|
@ -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";
|
||||||
|
}
|
|
@ -993,6 +993,10 @@ let
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mldonkey = import ../applications/networking/p2p/mldonkey {
|
||||||
|
inherit fetchurl stdenv ocaml zlib ncurses;
|
||||||
|
};
|
||||||
|
|
||||||
mpage = import ../tools/text/mpage {
|
mpage = import ../tools/text/mpage {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue