2018-09-11 23:11:12 +01:00
|
|
|
{ stdenv, fetchpatch, fetchFromGitHub, pkgconfig, 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 {
|
2015-02-04 14:55:49 +00:00
|
|
|
name = "aria2-${version}";
|
2018-06-09 07:57:25 +01:00
|
|
|
version = "1.34.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}";
|
2018-06-09 07:57:25 +01:00
|
|
|
sha256 = "0hwqnjyszasr6049vr5mn48slb48v5kw39cbpbxa68ggmhj9bw6m";
|
2010-05-20 12:11:24 +01:00
|
|
|
};
|
|
|
|
|
2018-09-11 23:11:12 +01:00
|
|
|
patches = [
|
|
|
|
# Remove with 1.35.0.
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/aria2/aria2/commit/e8e04d6f22a507e8374651d3d2343cd9fb986993.patch;
|
|
|
|
sha256 = "1v27nqbsdjgg3ga4n0v9daq21m3cmdpy7d08kp32200pzag87f4y";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-03-31 16:51:17 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig 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 ] ++
|
|
|
|
stdenv.lib.optional stdenv.isDarwin Security;
|
2015-02-18 16:51:02 +00:00
|
|
|
|
2015-07-31 00:30:15 +01:00
|
|
|
configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ];
|
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;
|
|
|
|
|
2015-02-04 14:55:49 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 14:38:03 +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;
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ koral ];
|
2010-05-20 12:11:24 +01:00
|
|
|
};
|
|
|
|
}
|