about summary refs log tree commit diff
path: root/pkgs/tools/networking/aria2/default.nix
blob: 84004b008d3c149d2c61b3ad06068628e6fc5bf1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, pkgconfig, cacert, c-ares, openssl, libxml2, sqlite, zlib }:

stdenv.mkDerivation rec {
  name = "aria2-${version}";
  version = "1.18.9";

  src = fetchurl {
    url = "mirror://sourceforge/aria2/stable/${name}/${name}.tar.bz2";
    sha256 = "1cn4g4mcrnw67y23970a9bngl8nf2x9hh82lc59gz3xyxn8wljz2";
  };

  buildInputs = [ pkgconfig c-ares openssl libxml2 sqlite zlib ];

  propagatedBuildInputs = [ cacert ];

  configureFlags = [ "--with-ca-bundle=${cacert}/etc/ca-bundle.crt" ];

  meta = with stdenv.lib; {
    homepage = http://aria2.sourceforge.net/;
    description = "A lightweight, multi-protocol, multi-source, command-line download utility";
    maintainers = [ maintainers.koral ];
    license = licenses.gpl2Plus;
  };
}