2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchpatch, fetchFromGitHub, pkg-config, autoreconfHook
|
2015-08-19 01:15:57 +01:00
|
|
|
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
|
2019-03-31 16:51:17 +01:00
|
|
|
, cppunit, sphinx
|
2015-09-30 08:34:02 +01:00
|
|
|
, Security
|
2015-08-19 01:15:57 +01:00
|
|
|
}:
|
2010-05-20 12:11:24 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "aria2";
|
2021-08-21 11:38:42 +01:00
|
|
|
version = "1.36.0";
|
2010-05-20 12:11:24 +01:00
|
|
|
|
2016-06-20 14:38:03 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aria2";
|
|
|
|
repo = "aria2";
|
|
|
|
rev = "release-${version}";
|
2021-08-21 11:38:42 +01:00
|
|
|
sha256 = "sha256-ErjFfSJDIgZq0qy0Zn5uZ9bZS2AtJq4FuBVuUuQgPTI=";
|
2010-05-20 12:11:24 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook sphinx ];
|
2016-05-30 21:56:26 +01:00
|
|
|
|
2015-09-30 08:34:02 +01:00
|
|
|
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
|
2021-01-15 09:19:50 +00:00
|
|
|
lib.optional stdenv.isDarwin Security;
|
2015-02-18 16:51:02 +00:00
|
|
|
|
2020-05-03 20:59:17 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "doc" "man" ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
|
|
|
|
"--enable-libaria2"
|
|
|
|
];
|
2010-05-20 12:11:24 +01:00
|
|
|
|
2019-03-31 16:51:17 +01:00
|
|
|
prePatch = ''
|
|
|
|
patchShebangs doc/manual-src/en/mkapiref.py
|
|
|
|
'';
|
|
|
|
|
2018-08-08 22:36:41 +01:00
|
|
|
checkInputs = [ cppunit ];
|
|
|
|
doCheck = false; # needs the net
|
|
|
|
|
2016-04-22 19:20:32 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://aria2.github.io";
|
2010-05-20 12:11:24 +01:00
|
|
|
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
|
2015-02-04 14:55:49 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-05-30 21:56:26 +01:00
|
|
|
platforms = platforms.unix;
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne koral ];
|
2010-05-20 12:11:24 +01:00
|
|
|
};
|
|
|
|
}
|