mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
aMule 2.2.6.
svn path=/nixpkgs/trunk/; revision=20866
This commit is contained in:
parent
3a94c410d1
commit
c936e89fc1
2 changed files with 11 additions and 7 deletions
|
@ -1,15 +1,16 @@
|
|||
{ fetchurl, stdenv, zlib, wxGTK, perl, cryptopp, libupnp, gettext
|
||||
, makeWrapper }:
|
||||
, pkgconfig, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "aMule-2.2.2";
|
||||
name = "aMule-2.2.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/amule/${name}.tar.bz2";
|
||||
sha256 = "0yrp3vk1gqfajgldfs4an5rd1l4i69icsrzcqmfxsny6qbcrv5hv";
|
||||
sha256 = "08l1931hcg1ia8yvhgx70hx64mknjnfn6l78m0ja44w13mgjpqvc";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib wxGTK perl cryptopp libupnp gettext makeWrapper ];
|
||||
buildInputs =
|
||||
[ zlib wxGTK perl cryptopp libupnp gettext pkgconfig makeWrapper ];
|
||||
|
||||
configureFlags = "--with-crypto-prefix=${cryptopp}";
|
||||
|
||||
|
@ -40,6 +41,9 @@ stdenv.mkDerivation rec {
|
|||
applications.
|
||||
'';
|
||||
|
||||
license = "GPLv2+";
|
||||
license = "GPLv2+";
|
||||
|
||||
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -363,8 +363,8 @@ let
|
|||
};
|
||||
|
||||
amule = import ../tools/networking/p2p/amule {
|
||||
inherit fetchurl stdenv zlib perl cryptopp gettext libupnp makeWrapper;
|
||||
inherit wxGTK;
|
||||
inherit fetchurl stdenv zlib perl cryptopp gettext libupnp makeWrapper
|
||||
wxGTK pkgconfig;
|
||||
};
|
||||
|
||||
aria = builderDefsPackage (import ../tools/networking/aria) {
|
||||
|
|
Loading…
Reference in a new issue