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

41 lines
1.2 KiB
Nix
Raw Normal View History

2016-06-20 15:38:03 +02:00
{ stdenv, fetchFromGitHub, fetchpatch, 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}";
2016-06-20 15:38:03 +02:00
version = "1.24.0";
2016-06-20 15:38:03 +02:00
src = fetchFromGitHub {
owner = "aria2";
repo = "aria2";
rev = "release-${version}";
sha256 = "0sb8s2rf2l0x7m8fx8kys7vad0lfw3k9071iai03kxplkdvg96n9";
};
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;
2016-06-20 15:38:03 +02:00
patches = stdenv.lib.optionals stdenv.isDarwin [
(fetchpatch {
url = https://github.com/aria2/aria2/commit/1e59e357af626edc870b7f53c1ae8083658d0d1a.patch;
sha256 = "1xjj4ll1v6adl6vdkl84v0mh7ma6p469ph1wpvksxrq6qp8345qj";
})
];
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-08-18 14:51:54 +02:00
maintainers = with maintainers; [ koral jgeerds ];
2015-02-04 15:55:49 +01:00
license = licenses.gpl2Plus;
2016-05-30 22:56:26 +02:00
platforms = platforms.unix;
};
}