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

25 lines
763 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, cacert, c-ares, openssl, libxml2, sqlite, zlib }:
stdenv.mkDerivation rec {
2015-02-04 14:55:49 +00:00
name = "aria2-${version}";
2015-05-26 09:28:50 +01:00
version = "1.19.0";
src = fetchurl {
2015-05-26 09:28:50 +01:00
url = "mirror://sourceforge/aria2/stable/${name}/${name}.tar.xz";
sha256 = "0xm4fmap9gp2pz6z01mnnpmazw6pnhzs8qc58181m5ai4gy5ksp2";
};
buildInputs = [ pkgconfig c-ares openssl libxml2 sqlite zlib ];
propagatedBuildInputs = [ cacert ];
configureFlags = [ "--with-ca-bundle=${cacert}/etc/ssl/certs/ca-bundle.crt" ];
2015-02-04 14:55:49 +00:00
meta = with stdenv.lib; {
homepage = http://aria2.sourceforge.net/;
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
2015-02-04 14:55:49 +00:00
maintainers = [ maintainers.koral ];
license = licenses.gpl2Plus;
};
}