2013-07-04 16:45:56 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, openssl, libxml2, sqlite, zlib }:
|
2010-05-20 13:11:24 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-04 15:55:49 +01:00
|
|
|
name = "aria2-${version}";
|
|
|
|
version = "1.18.9";
|
2010-05-20 13:11:24 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/aria2/stable/${name}/${name}.tar.bz2";
|
2015-02-04 15:55:49 +01:00
|
|
|
sha256 = "1cn4g4mcrnw67y23970a9bngl8nf2x9hh82lc59gz3xyxn8wljz2";
|
2010-05-20 13:11:24 +02:00
|
|
|
};
|
|
|
|
|
2013-07-04 16:45:56 +02:00
|
|
|
buildInputs = [ pkgconfig openssl libxml2 sqlite zlib ];
|
2010-05-20 13:11:24 +02:00
|
|
|
|
2015-02-04 15:55:49 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-05-20 13:11:24 +02:00
|
|
|
homepage = http://aria2.sourceforge.net/;
|
|
|
|
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
|
2015-02-04 15:55:49 +01:00
|
|
|
maintainers = [ maintainers.koral ];
|
|
|
|
license = licenses.gpl2Plus;
|
2010-05-20 13:11:24 +02:00
|
|
|
};
|
|
|
|
}
|