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

21 lines
621 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, openssl, libxml2, sqlite, zlib }:
stdenv.mkDerivation rec {
2015-02-04 09:55:49 -05:00
name = "aria2-${version}";
2015-02-24 05:50:14 -05:00
version = "1.18.10";
src = fetchurl {
url = "mirror://sourceforge/aria2/stable/${name}/${name}.tar.bz2";
2015-02-24 05:50:14 -05:00
sha256 = "1vvc3pv1100xb4293bmgqpxvy3pdvivnz415b9q78n7190kag3a5";
};
buildInputs = [ pkgconfig openssl libxml2 sqlite zlib ];
2015-02-04 09:55:49 -05:00
meta = with stdenv.lib; {
homepage = http://aria2.sourceforge.net/;
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
2015-02-04 09:55:49 -05:00
maintainers = [ maintainers.koral ];
license = licenses.gpl2Plus;
};
}