aria2: 1.22.0 -> 1.23.0

+4 -3
+4 -3
pkgs/tools/networking/aria2/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "aria2-${version}"; 8 - version = "1.22.0"; 8 + version = "1.23.0"; 9 9 10 10 src = fetchurl { 11 11 url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz"; 12 - sha256 = "12agwdvvkr34wqhyyfp418dj0k7nbr297qmcd3wj5kkn7brv6gxc"; 12 + sha256 = "14qz7686zxnhbaqj6l1hqpkykhpygm74h2mzwhh13gqmcj38alaq"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ pkgconfig ]; 16 + 16 17 buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++ 17 18 stdenv.lib.optional stdenv.isDarwin Security; 18 19 ··· 25 26 description = "A lightweight, multi-protocol, multi-source, command-line download utility"; 26 27 maintainers = with maintainers; [ koral jgeerds ]; 27 28 license = licenses.gpl2Plus; 28 - platforms = platforms.linux; 29 + platforms = platforms.unix; 29 30 }; 30 31 }