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

47 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-17 04:51:22 +01:00
{ lib, stdenv, fetchpatch, fetchFromGitHub, pkg-config, autoreconfHook
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
, cppunit, sphinx
2015-09-30 09:34:02 +02:00
, Security
}:
stdenv.mkDerivation rec {
pname = "aria2";
version = "1.35.0";
2016-06-20 15:38:03 +02:00
src = fetchFromGitHub {
owner = "aria2";
repo = "aria2";
rev = "release-${version}";
sha256 = "195r3711ly3drf9jkygwdc2m7q99hiqlfrig3ip1127b837gzsf9";
};
2021-01-17 04:51:22 +01:00
nativeBuildInputs = [ pkg-config autoreconfHook sphinx ];
2016-05-30 22:56:26 +02:00
2015-09-30 09:34:02 +02:00
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
2021-01-15 10:19:50 +01: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 23:36:41 +02:00
checkInputs = [ cppunit ];
doCheck = false; # needs the net
2016-04-22 20:20:32 +02: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 15:55:49 +01:00
license = licenses.gpl2Plus;
2016-05-30 22:56:26 +02:00
platforms = platforms.unix;
maintainers = with maintainers; [ Br1ght0ne koral ];
};
}