1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/networking/p2p/mldonkey/default.nix
Michael Raskin 73b0973818 Adding MLDonkey multiprotocol data distribution client - patch by Lluis Batlle
svn path=/nixpkgs/trunk/; revision=13702
2009-01-04 17:35:11 +00:00

19 lines
499 B
Nix

{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";
}