2015-08-18 13:50:19 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, cppunit, libgcrypt
|
2015-08-18 22:52:12 +01:00
|
|
|
, c-ares, libxml2, sqlite, zlib }:
|
2010-05-20 12:11:24 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-04 14:55:49 +00:00
|
|
|
name = "aria2-${version}";
|
2015-05-26 09:28:50 +01:00
|
|
|
version = "1.19.0";
|
2010-05-20 12:11:24 +01:00
|
|
|
|
2015-08-18 13:50:19 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tatsuhiro-t";
|
|
|
|
repo = "aria2";
|
|
|
|
rev = "release-${version}";
|
|
|
|
sha256 = "1k4b8jfg4wjsvybb7hysplp6h831allhiqdy9jwsyy0m0zmgk00a";
|
2010-05-20 12:11:24 +01:00
|
|
|
};
|
|
|
|
|
2015-08-18 13:50:19 +01:00
|
|
|
buildInputs = [
|
2015-08-18 22:52:12 +01:00
|
|
|
pkgconfig autoreconfHook cppunit libgcrypt c-ares libxml2 sqlite zlib
|
2015-08-18 13:50:19 +01:00
|
|
|
];
|
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
|
|
|
|
2015-02-04 14:55:49 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-08-18 13:50:19 +01:00
|
|
|
homepage = https://github.com/tatsuhiro-t/aria2;
|
2010-05-20 12:11:24 +01:00
|
|
|
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
|
2015-08-18 13:51:54 +01:00
|
|
|
maintainers = with maintainers; [ koral jgeerds ];
|
2015-02-04 14:55:49 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2015-08-18 13:51:03 +01:00
|
|
|
platforms = platforms.linux;
|
2010-05-20 12:11:24 +01:00
|
|
|
};
|
|
|
|
}
|