3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/aria2/default.nix

27 lines
813 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, autoreconfHook
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
}:
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";
src = fetchurl {
url = "mirror://sourceforge/aria2/${name}.tar.xz";
sha256 = "0xm4fmap9gp2pz6z01mnnpmazw6pnhzs8qc58181m5ai4gy5ksp2";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ];
configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ];
2015-02-04 14:55:49 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/tatsuhiro-t/aria2;
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;
};
}