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

50 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchpatch, fetchFromGitHub, pkgconfig, autoreconfHook
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
, cppunit, sphinx
2015-09-30 07:34:02 +00:00
, Security
}:
stdenv.mkDerivation rec {
2015-02-04 14:55:49 +00:00
name = "aria2-${version}";
2018-06-09 06:57:25 +00:00
version = "1.34.0";
2016-06-20 13:38:03 +00:00
src = fetchFromGitHub {
owner = "aria2";
repo = "aria2";
rev = "release-${version}";
2018-06-09 06:57:25 +00:00
sha256 = "0hwqnjyszasr6049vr5mn48slb48v5kw39cbpbxa68ggmhj9bw6m";
};
patches = [
# Remove with 1.35.0.
(fetchpatch {
url = https://github.com/aria2/aria2/commit/e8e04d6f22a507e8374651d3d2343cd9fb986993.patch;
sha256 = "1v27nqbsdjgg3ga4n0v9daq21m3cmdpy7d08kp32200pzag87f4y";
})
];
nativeBuildInputs = [ pkgconfig 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 ] ++
stdenv.lib.optional stdenv.isDarwin Security;
configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ];
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;
2015-02-04 14:55:49 +00:00
meta = with stdenv.lib; {
2016-06-20 13:38:03 +00:00
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; [ koral ];
};
}