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

47 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchpatch, fetchFromGitHub, pkg-config, autoreconfHook
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
, cppunit, sphinx
2015-09-30 07:34:02 +00:00
, Security
}:
stdenv.mkDerivation rec {
pname = "aria2";
version = "1.35.0";
2016-06-20 13:38:03 +00:00
src = fetchFromGitHub {
owner = "aria2";
repo = "aria2";
rev = "release-${version}";
sha256 = "195r3711ly3drf9jkygwdc2m7q99hiqlfrig3ip1127b837gzsf9";
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config autoreconfHook sphinx ];
2016-05-30 20:56:26 +00:00
2015-09-30 07:34:02 +00:00
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
2021-01-15 09:19:50 +00:00
lib.optional stdenv.isDarwin Security;
outputs = [ "bin" "dev" "out" "doc" "man" ];
configureFlags = [
"--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
"--enable-libaria2"
];
prePatch = ''
patchShebangs doc/manual-src/en/mkapiref.py
'';
2018-08-08 21:36:41 +00:00
checkInputs = [ cppunit ];
doCheck = false; # needs the net
2016-04-22 18:20:32 +00:00
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://aria2.github.io";
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
2015-02-04 14:55:49 +00:00
license = licenses.gpl2Plus;
2016-05-30 20:56:26 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ Br1ght0ne koral ];
};
}