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

29 lines
923 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, autoreconfHook
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
2015-09-30 00:34:02 -07:00
, Security
}:
stdenv.mkDerivation rec {
2015-02-04 06:55:49 -08:00
name = "aria2-${version}";
2016-02-24 03:56:15 -08:00
version = "1.20.0";
src = fetchurl {
2015-10-23 06:10:05 -07:00
url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz";
2016-02-24 03:56:15 -08:00
sha256 = "1l4gzz3yr0cl6a9xdy7843c5sb7afyq0i80wi2hasfpfdx5k95mz";
};
nativeBuildInputs = [ pkgconfig ];
2015-09-30 00:34:02 -07: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" ];
2015-02-04 06:55:49 -08: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 05:51:54 -07:00
maintainers = with maintainers; [ koral jgeerds ];
2015-02-04 06:55:49 -08:00
license = licenses.gpl2Plus;
2015-08-18 05:51:03 -07:00
platforms = platforms.linux;
};
}