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