* Added aria2, a download utility.
svn path=/nixpkgs/trunk/; revision=21912
This commit is contained in:
@@ -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";
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -371,6 +371,10 @@ let
|
|||||||
aria = builderDefsPackage (import ../tools/networking/aria) {
|
aria = builderDefsPackage (import ../tools/networking/aria) {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aria2 = import ../tools/networking/aria2 {
|
||||||
|
inherit fetchurl stdenv openssl libxml2 zlib;
|
||||||
|
};
|
||||||
|
|
||||||
at = import ../tools/system/at {
|
at = import ../tools/system/at {
|
||||||
inherit fetchurl stdenv bison flex pam ssmtp;
|
inherit fetchurl stdenv bison flex pam ssmtp;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user