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