2024-05-25 14:04:25 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
pkg-config,
|
|
|
|
autoreconfHook,
|
2023-07-06 12:04:49 +00:00
|
|
|
gnutls,
|
|
|
|
c-ares,
|
|
|
|
libxml2,
|
|
|
|
sqlite,
|
|
|
|
zlib,
|
|
|
|
libssh2,
|
2019-03-31 15:51:17 +00:00
|
|
|
cppunit,
|
|
|
|
sphinx,
|
2024-04-16 17:14:48 +00:00
|
|
|
Security,
|
|
|
|
nixosTests,
|
2015-08-19 00:15:57 +00:00
|
|
|
}:
|
2010-05-20 11:11:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "aria2";
|
2023-11-15 14:50:34 +00:00
|
|
|
version = "1.37.0";
|
2010-05-20 11:11:24 +00:00
|
|
|
|
2016-06-20 13:38:03 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aria2";
|
|
|
|
repo = "aria2";
|
|
|
|
rev = "release-${version}";
|
2023-11-15 14:50:34 +00:00
|
|
|
sha256 = "sha256-xbiNSg/Z+CA0x0DQfMNsWdA+TATyX6dCeW2Nf3L3Kfs=";
|
2010-05-20 11:11:24 +00:00
|
|
|
};
|
|
|
|
|
2021-12-27 12:52:04 +00:00
|
|
|
strictDeps = true;
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
autoreconfHook
|
|
|
|
sphinx
|
|
|
|
];
|
2016-05-30 20:56:26 +00:00
|
|
|
|
2023-07-06 12:04:49 +00:00
|
|
|
buildInputs = [
|
|
|
|
gnutls
|
|
|
|
c-ares
|
|
|
|
libxml2
|
|
|
|
sqlite
|
|
|
|
zlib
|
|
|
|
libssh2
|
2021-01-15 09:19:50 +00:00
|
|
|
] ++ lib.optional stdenv.hostPlatform.isDarwin Security;
|
2015-02-18 16:51:02 +00:00
|
|
|
|
2020-05-03 19:59:17 +00:00
|
|
|
outputs = [
|
|
|
|
"bin"
|
|
|
|
"dev"
|
|
|
|
"out"
|
|
|
|
"doc"
|
|
|
|
"man"
|
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
|
|
|
|
"--enable-libaria2"
|
2022-05-18 04:20:00 +00:00
|
|
|
"--with-bashcompletiondir=${placeholder "bin"}/share/bash-completion/completions"
|
2020-05-03 19:59:17 +00:00
|
|
|
];
|
2010-05-20 11:11:24 +00:00
|
|
|
|
2019-03-31 15:51:17 +00:00
|
|
|
prePatch = ''
|
2021-12-27 12:52:04 +00:00
|
|
|
patchShebangs --build doc/manual-src/en/mkapiref.py
|
2019-03-31 15:51:17 +00:00
|
|
|
'';
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ cppunit ];
|
2018-08-08 21:36:41 +00:00
|
|
|
doCheck = false; # needs the net
|
|
|
|
|
2016-04-22 18:20:32 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2024-04-16 17:14:48 +00:00
|
|
|
passthru.tests = {
|
|
|
|
aria2 = nixosTests.aria2;
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://aria2.github.io";
|
2024-10-04 19:35:12 +00:00
|
|
|
changelog = "https://github.com/aria2/aria2/releases/tag/release-${version}";
|
2010-05-20 11:11:24 +00:00
|
|
|
description = "Lightweight, multi-protocol, multi-source, command-line download utility";
|
2022-09-18 15:43:00 +00:00
|
|
|
mainProgram = "aria2c";
|
2015-02-04 14:55:49 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-05-30 20:56:26 +00:00
|
|
|
platforms = platforms.unix;
|
2024-04-11 18:52:16 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
Br1ght0ne
|
|
|
|
koral
|
|
|
|
timhae
|
|
|
|
];
|
2010-05-20 11:11:24 +00:00
|
|
|
};
|
|
|
|
}
|