aMule 2.2.1.
svn path=/nixpkgs/trunk/; revision=12446
This commit is contained in:
parent
2a5a982ad1
commit
3b1eea4c83
@ -1,18 +1,37 @@
|
|||||||
args: with args;
|
{ fetchurl, stdenv, zlib, wxGTK, perl, cryptopp, gettext }:
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "aMule-2.1.3";
|
|
||||||
|
|
||||||
src =
|
stdenv.mkDerivation rec {
|
||||||
fetchurl {
|
name = "aMule-2.2.1";
|
||||||
url = mirror://sourceforge/amule/aMule-2.1.3.tar.bz2;
|
|
||||||
sha256 = "0i027g8sc865c9hgrnz9syy3j0pcl84sa89vbsvk3hkspd3yk5vf";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs =[zlib wxGTK];
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/amule/${name}.tar.bz2";
|
||||||
|
sha256 = "0zcsyy6bm7ls1dpmfm0yskd2gj50ah2bvkm0v42826zwzj6sbxy9";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ zlib wxGTK perl cryptopp gettext ];
|
||||||
|
|
||||||
|
configureFlags = "--with-crypto-prefix=${cryptopp}";
|
||||||
|
|
||||||
|
postConfigure = ''
|
||||||
|
sed -i "src/libs/ec/file_generator.pl" \
|
||||||
|
-es'|/usr/bin/perl|${perl}/bin/perl|g'
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "
|
homepage = http://amule.org/;
|
||||||
EDonkey client.
|
description = "aMule, a peer-to-peer client for the eD2K and Kademlia networks";
|
||||||
";
|
|
||||||
|
longDescription = ''
|
||||||
|
aMule is an eMule-like client for the eD2k and Kademlia
|
||||||
|
networks, supporting multiple platforms. Currently aMule
|
||||||
|
(officially) supports a wide variety of platforms and operating
|
||||||
|
systems, being compatible with more than 60 different
|
||||||
|
hardware+OS configurations. aMule is entirely free, its
|
||||||
|
sourcecode released under the GPL just like eMule, and includes
|
||||||
|
no adware or spyware as is often found in proprietary P2P
|
||||||
|
applications.
|
||||||
|
'';
|
||||||
|
|
||||||
|
license = "GPLv2+";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -395,7 +395,8 @@ let pkgs = rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
amule = import ../tools/networking/p2p/amule {
|
amule = import ../tools/networking/p2p/amule {
|
||||||
inherit fetchurl stdenv zlib wxGTK;
|
inherit fetchurl stdenv zlib perl cryptopp gettext;
|
||||||
|
wxGTK = wxGTK28;
|
||||||
};
|
};
|
||||||
|
|
||||||
aria = builderDefsPackage (import ../tools/networking/aria) {
|
aria = builderDefsPackage (import ../tools/networking/aria) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user