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

34 lines
944 B
Nix
Raw Normal View History

2016-08-30 14:51:35 +02:00
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
2015-09-30 09:34:02 +02:00
, Security
}:
stdenv.mkDerivation rec {
2015-02-04 15:55:49 +01:00
name = "aria2-${version}";
2018-06-09 08:57:25 +02:00
version = "1.34.0";
2016-06-20 15:38:03 +02:00
src = fetchFromGitHub {
owner = "aria2";
repo = "aria2";
rev = "release-${version}";
2018-06-09 08:57:25 +02:00
sha256 = "0hwqnjyszasr6049vr5mn48slb48v5kw39cbpbxa68ggmhj9bw6m";
};
2016-06-20 15:38:03 +02:00
nativeBuildInputs = [ pkgconfig autoreconfHook ];
2016-05-30 22:56:26 +02:00
2015-09-30 09:34:02 +02: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 20:20:32 +02:00
enableParallelBuilding = true;
2015-02-04 15:55:49 +01:00
meta = with stdenv.lib; {
2016-06-20 15:38:03 +02:00
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;
2016-11-23 10:49:19 +01:00
maintainers = with maintainers; [ koral jgeerds ];
};
}