nixpkgs/pkgs/tools/networking/aria2/default.nix
Jonas Hoersch 5597e9a2a5 aria2: update to version 1.17.1 and add sqlite support
also add missing pkgconfig dependency, so that the buildInputs zlib,
openssl, and sqlite are properly found.
2013-07-04 19:26:03 +02:00

18 lines
503 B
Nix

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