2009-01-04 18:35:11 +01:00
|
|
|
{stdenv, fetchurl, ocaml, zlib, ncurses}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-05-17 22:34:04 +02:00
|
|
|
name = "mldonkey-3.0.0";
|
2009-01-04 18:35:11 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-05-17 22:34:04 +02:00
|
|
|
url = mirror://sourceforge/mldonkey/mldonkey-3.0.0.tar.bz2;
|
|
|
|
sha256 = "0zzvcfnbhxk8axfch5fbkd9j2ks67nbb1ndjjarxvrza78g5y8r7";
|
2009-01-04 18:35:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Client for many p2p networks, with multiple frontends";
|
|
|
|
homepage = http://mldonkey.sourceforge.net/;
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ocaml zlib ncurses ];
|
|
|
|
configureFlags = "--disable-gd --disable-gui";
|
|
|
|
}
|