Merge pull request #18122 from romildo/upd.aria2

aria2: 1.24.0 -> 1.26.1
wip/yesman
Joachim F 8 years ago committed by GitHub
commit 5f6d842ab1
  1. 13
      pkgs/tools/networking/aria2/default.nix

@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, autoreconfHook
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
, openssl, c-ares, libxml2, sqlite, zlib, libssh2
, Security
}:
stdenv.mkDerivation rec {
name = "aria2-${version}";
version = "1.24.0";
version = "1.26.1";
src = fetchFromGitHub {
owner = "aria2";
repo = "aria2";
rev = "release-${version}";
sha256 = "0sb8s2rf2l0x7m8fx8kys7vad0lfw3k9071iai03kxplkdvg96n9";
sha256 = "1nf7z55cc6ljpz7zzb8ppg8ybg531gfbhyggya7lnr5ka74h87b5";
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
@ -19,13 +19,6 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++
stdenv.lib.optional stdenv.isDarwin Security;
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" ];
enableParallelBuilding = true;

Loading…
Cancel
Save