2016-08-30 12:51:35 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
|
2015-08-19 00:15:57 +00:00
|
|
|
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
|
2015-09-30 07:34:02 +00:00
|
|
|
, Security
|
2015-08-19 00:15:57 +00:00
|
|
|
}:
|
2010-05-20 11:11:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-04 14:55:49 +00:00
|
|
|
name = "aria2-${version}";
|
2017-01-23 21:16:05 +00:00
|
|
|
version = "1.31.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}";
|
2017-01-23 21:16:05 +00:00
|
|
|
sha256 = "0d7z4bss1plkvlw5kfwzivxryrh13zi58ii3vf8q4csaz4yqhcjy";
|
2010-05-20 11:11:24 +00:00
|
|
|
};
|
|
|
|
|
2016-06-20 13:38:03 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
2016-05-30 20:56:26 +00:00
|
|
|
|
2015-09-30 07:34:02 +00: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-30 23:30:15 +00:00
|
|
|
configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ];
|
2010-05-20 11:11:24 +00:00
|
|
|
|
2016-04-22 18:20:32 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-02-04 14:55:49 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 13:38:03 +00:00
|
|
|
homepage = https://aria2.github.io;
|
2010-05-20 11:11:24 +00: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 20:56:26 +00:00
|
|
|
platforms = platforms.unix;
|
2016-11-23 09:49:19 +00:00
|
|
|
maintainers = with maintainers; [ koral jgeerds ];
|
2010-05-20 11:11:24 +00:00
|
|
|
};
|
|
|
|
}
|