nixpkgs/pkgs/tools/networking/aria2/default.nix

27 lines
860 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-10-23 13:10:05 +00:00
version = "1.19.2";
src = fetchurl {
2015-10-23 13:10:05 +00:00
url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz";
sha256 = "0gnm1b7yp5q6fcajz1ln2f1rv64p6dv0nz9bcwpqrkcmsinlh19n";
};
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 12:51:54 +00:00
maintainers = with maintainers; [ koral jgeerds ];
2015-02-04 14:55:49 +00:00
license = licenses.gpl2Plus;
2015-08-18 12:51:03 +00:00
platforms = platforms.linux;
};
}