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

32 lines
957 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, autoreconfHook
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
2015-09-30 08:34:02 +01:00
, Security
}:
stdenv.mkDerivation rec {
2015-02-04 14:55:49 +00:00
name = "aria2-${version}";
2016-05-30 21:56:26 +01:00
version = "1.23.0";
src = fetchurl {
2015-10-23 14:10:05 +01:00
url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz";
2016-05-30 21:56:26 +01:00
sha256 = "14qz7686zxnhbaqj6l1hqpkykhpygm74h2mzwhh13gqmcj38alaq";
};
nativeBuildInputs = [ pkgconfig ];
2016-05-30 21:56:26 +01:00
2015-09-30 08:34:02 +01:00
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
stdenv.lib.optional stdenv.isDarwin Security;
configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ];
2016-04-22 19:20:32 +01:00
enableParallelBuilding = true;
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;
2016-05-30 21:56:26 +01:00
platforms = platforms.unix;
};
}