2015-08-19 00:15:57 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, autoreconfHook
|
|
|
|
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
|
2015-09-30 07:34:02 +00:00
|
|
|
, Security
|
2015-08-19 00:15:57 +00:00
|
|
|
}:
|
2010-05-20 11:11:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-04 14:55:49 +00:00
|
|
|
name = "aria2-${version}";
|
2016-01-16 14:34:29 +00:00
|
|
|
version = "1.19.3";
|
2010-05-20 11:11:24 +00:00
|
|
|
|
2015-08-19 00:15:57 +00:00
|
|
|
src = fetchurl {
|
2015-10-23 13:10:05 +00:00
|
|
|
url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz";
|
2016-01-16 14:34:29 +00:00
|
|
|
sha256 = "1qwr4al6wlh5f558r0mr1hvdnf7d8ss6qwqn2361k99phk1cdg3a";
|
2010-05-20 11:11:24 +00:00
|
|
|
};
|
|
|
|
|
2015-08-19 00:15:57 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-09-30 07:34:02 +00:00
|
|
|
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
|
|
|
|
stdenv.lib.optional stdenv.isDarwin Security;
|
2015-02-18 16:51:02 +00:00
|
|
|
|
2015-07-30 23:30:15 +00:00
|
|
|
configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ];
|
2010-05-20 11:11:24 +00:00
|
|
|
|
2015-02-04 14:55:49 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-08-18 12:50:19 +00:00
|
|
|
homepage = https://github.com/tatsuhiro-t/aria2;
|
2010-05-20 11:11:24 +00:00
|
|
|
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
|
2015-08-18 12:51:54 +00:00
|
|
|
maintainers = with maintainers; [ koral jgeerds ];
|
2015-02-04 14:55:49 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2015-08-18 12:51:03 +00:00
|
|
|
platforms = platforms.linux;
|
2010-05-20 11:11:24 +00:00
|
|
|
};
|
|
|
|
}
|