Added aMule

svn path=/nixpkgs/trunk/; revision=9413
This commit is contained in:
Michael Raskin 2007-10-06 15:59:35 +00:00
parent 3b8b925153
commit 7aec010f6a
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,18 @@
args: with args;
stdenv.mkDerivation {
name = "aMule-2.1.3";
src =
fetchurl {
url = mirror://sourceforge/amule/aMule-2.1.3.tar.bz2;
sha256 = "0i027g8sc865c9hgrnz9syy3j0pcl84sa89vbsvk3hkspd3yk5vf";
};
buildInputs =[zlib wxGTK];
meta = {
description = "
EDonkey client.
";
};
}

View File

@ -296,6 +296,10 @@ rec {
inherit fetchurl stdenv fuse;
};
amule = import ../tools/networking/p2p/amule {
inherit fetchurl stdenv zlib wxGTK;
};
axel = import ../tools/networking/axel {
inherit fetchurl stdenv;
};