lol

Merge pull request #18122 from romildo/upd.aria2

aria2: 1.24.0 -> 1.26.1

authored by

Joachim F and committed by
GitHub
5f6d842a 6914bc1e

+3 -10
+3 -10
pkgs/tools/networking/aria2/default.nix
··· 1 - { stdenv, fetchFromGitHub, fetchpatch, pkgconfig, autoreconfHook 1 + { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook 2 2 , openssl, c-ares, libxml2, sqlite, zlib, libssh2 3 3 , Security 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "aria2-${version}"; 8 - version = "1.24.0"; 8 + version = "1.26.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "aria2"; 12 12 repo = "aria2"; 13 13 rev = "release-${version}"; 14 - sha256 = "0sb8s2rf2l0x7m8fx8kys7vad0lfw3k9071iai03kxplkdvg96n9"; 14 + sha256 = "1nf7z55cc6ljpz7zzb8ppg8ybg531gfbhyggya7lnr5ka74h87b5"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ pkgconfig autoreconfHook ]; 18 18 19 19 buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++ 20 20 stdenv.lib.optional stdenv.isDarwin Security; 21 - 22 - patches = stdenv.lib.optionals stdenv.isDarwin [ 23 - (fetchpatch { 24 - url = https://github.com/aria2/aria2/commit/1e59e357af626edc870b7f53c1ae8083658d0d1a.patch; 25 - sha256 = "1xjj4ll1v6adl6vdkl84v0mh7ma6p469ph1wpvksxrq6qp8345qj"; 26 - }) 27 - ]; 28 21 29 22 configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ]; 30 23