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

41 lines
1.2 KiB
Nix
Raw Normal View History

2016-06-20 14:38:03 +01:00
{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, autoreconfHook
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
2015-09-30 08:34:02 +01:00
, Security
}:
stdenv.mkDerivation rec {
2015-02-04 14:55:49 +00:00
name = "aria2-${version}";
2016-06-20 14:38:03 +01:00
version = "1.24.0";
2016-06-20 14:38:03 +01:00
src = fetchFromGitHub {
owner = "aria2";
repo = "aria2";
rev = "release-${version}";
sha256 = "0sb8s2rf2l0x7m8fx8kys7vad0lfw3k9071iai03kxplkdvg96n9";
};
2016-06-20 14:38:03 +01:00
nativeBuildInputs = [ pkgconfig autoreconfHook ];
2016-05-30 21:56:26 +01:00
2015-09-30 08:34:02 +01:00
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
stdenv.lib.optional stdenv.isDarwin Security;
2016-06-20 14:38:03 +01: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 19:20:32 +01:00
enableParallelBuilding = true;
2015-02-04 14:55:49 +00:00
meta = with stdenv.lib; {
2016-06-20 14:38:03 +01:00
homepage = https://aria2.github.io;
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
2015-08-18 13:51:54 +01:00
maintainers = with maintainers; [ koral jgeerds ];
2015-02-04 14:55:49 +00:00
license = licenses.gpl2Plus;
2016-05-30 21:56:26 +01:00
platforms = platforms.unix;
};
}