* Added aria2, a download utility.

svn path=/nixpkgs/trunk/; revision=21912
This commit is contained in:
Eelco Dolstra 2010-05-20 11:11:24 +00:00
parent 81cd88d83d
commit 3dd55eef23
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ stdenv, fetchurl, openssl, libxml2, zlib }:
stdenv.mkDerivation rec {
name = "aria2-1.9.3";
src = fetchurl {
url = "mirror://sourceforge/aria2/stable/${name}/${name}.tar.bz2";
sha256 = "04vnvq5f797bbyrrv1kzvnv8h02f4wbhvsl34syi4gygimfrwkrn";
};
buildInputs = [ openssl libxml2 zlib ];
meta = {
homepage = http://aria2.sourceforge.net/;
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
};
}

View file

@ -371,6 +371,10 @@ let
aria = builderDefsPackage (import ../tools/networking/aria) {
};
aria2 = import ../tools/networking/aria2 {
inherit fetchurl stdenv openssl libxml2 zlib;
};
at = import ../tools/system/at {
inherit fetchurl stdenv bison flex pam ssmtp;
};