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

18 lines
503 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, openssl, libxml2, sqlite, zlib }:
stdenv.mkDerivation rec {
2013-12-18 12:52:51 +01:00
name = "aria2-1.18.1";
src = fetchurl {
url = "mirror://sourceforge/aria2/stable/${name}/${name}.tar.bz2";
2013-12-18 12:52:51 +01:00
sha256 = "0fwm5d0i4nr9yzckmd8yc80yj4h1acrv6jca3h1vjji0rbgk49zy";
};
buildInputs = [ pkgconfig openssl libxml2 sqlite zlib ];
meta = {
homepage = http://aria2.sourceforge.net/;
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
};
}