Updating mldonkey, and adding more build-type add-ons.

svn path=/nixpkgs/trunk/; revision=19486
This commit is contained in:
Lluís Batlle i Rossell 2010-01-16 16:31:52 +00:00
parent 15083226fd
commit 68c9d127ed
2 changed files with 7 additions and 7 deletions

View File

@ -1,11 +1,11 @@
{stdenv, fetchurl, ocaml, zlib, ncurses}: {stdenv, fetchurl, ocaml, zlib, bzip2, ncurses, file, gd, libpng }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "mldonkey-3.0.0"; name = "mldonkey-3.0.1";
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/mldonkey/mldonkey-3.0.0.tar.bz2; url = "mirror://sourceforge/mldonkey/mldonkey-3.0.1.tar.bz2";
sha256 = "0zzvcfnbhxk8axfch5fbkd9j2ks67nbb1ndjjarxvrza78g5y8r7"; sha256 = "09zk53rfdkjipf5sl37rypzi2mx0a5v57vsndj22zajkqr4l0zds";
}; };
meta = { meta = {
@ -13,6 +13,6 @@ stdenv.mkDerivation {
homepage = http://mldonkey.sourceforge.net/; homepage = http://mldonkey.sourceforge.net/;
}; };
buildInputs = [ ocaml zlib ncurses ]; buildInputs = [ ocaml zlib ncurses bzip2 file gd libpng ];
configureFlags = "--disable-gd --disable-gui"; configureFlags = [ "--disable-gui" "--enable-ocamlver=3.11.1" ];
} }

View File

@ -1032,7 +1032,7 @@ let
}; };
mldonkey = import ../applications/networking/p2p/mldonkey { mldonkey = import ../applications/networking/p2p/mldonkey {
inherit fetchurl stdenv ocaml zlib ncurses; inherit fetchurl stdenv ocaml zlib bzip2 ncurses file gd libpng;
}; };
monit = builderDefsPackage ../tools/system/monit { monit = builderDefsPackage ../tools/system/monit {