Merge pull request #66602 from jonringer/bump-axel

axel: 2.17.3 -> 2.17.5
This commit is contained in:
Marek Mahut 2019-08-14 08:52:42 +02:00 committed by GitHub
commit 90f6578ef2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,22 +1,22 @@
{ stdenv, fetchFromGitHub, autoreconfHook, autoconf-archive
, pkgconfig, gettext, libssl }:
, pkgconfig, gettext, libssl, txt2man }:
stdenv.mkDerivation rec {
pname = "axel";
version = "2.17.3";
version = "2.17.5";
src = fetchFromGitHub {
owner = "axel-download-accelerator";
repo = pname;
rev = "v${version}";
sha256 = "0kdd2y92plv240ba2j3xrm0f8xygvm1ijghnric4whsnxvmgym7h";
sha256 = "0kwfbwh9g2227icgykgwa057vll5rkgac3df0pby530bivqzzzlw";
};
nativeBuildInputs = [ autoreconfHook pkgconfig autoconf-archive ];
nativeBuildInputs = [ autoreconfHook pkgconfig autoconf-archive txt2man ];
buildInputs = [ gettext libssl ];
installFlags = [ "ETCDIR=$(out)/etc" ];
installFlags = [ "ETCDIR=${placeholder "out"}/etc" ];
meta = with stdenv.lib; {
description = "Console downloading program with some features for parallel connections for faster downloading";