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

29 lines
849 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, cppunit, libgcrypt
2015-08-18 21:52:12 +00:00
, c-ares, libxml2, sqlite, zlib }:
stdenv.mkDerivation rec {
2015-02-04 14:55:49 +00:00
name = "aria2-${version}";
2015-05-26 08:28:50 +00:00
version = "1.19.0";
src = fetchFromGitHub {
owner = "tatsuhiro-t";
repo = "aria2";
rev = "release-${version}";
sha256 = "1k4b8jfg4wjsvybb7hysplp6h831allhiqdy9jwsyy0m0zmgk00a";
};
buildInputs = [
2015-08-18 21:52:12 +00:00
pkgconfig autoreconfHook cppunit libgcrypt c-ares libxml2 sqlite zlib
];
configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ];
2015-02-04 14:55:49 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/tatsuhiro-t/aria2;
description = "A lightweight, multi-protocol, multi-source, command-line download utility";
2015-08-18 12:51:54 +00:00
maintainers = with maintainers; [ koral jgeerds ];
2015-02-04 14:55:49 +00:00
license = licenses.gpl2Plus;
2015-08-18 12:51:03 +00:00
platforms = platforms.linux;
};
}