2017-12-13 13:03:55 +03:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, gettext, libssl }:
|
2007-08-16 23:50:59 +04:00
|
|
|
|
2014-12-20 00:57:16 +03:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "axel-${version}";
|
2019-05-12 21:00:30 +03:00
|
|
|
version = "2.17.1";
|
2014-12-20 00:57:16 +03:00
|
|
|
|
2007-08-16 23:50:59 +04:00
|
|
|
src = fetchurl {
|
2019-05-12 21:00:30 +03:00
|
|
|
url = "https://github.com/axel-download-accelerator/axel/releases/download/v${version}/${name}.tar.xz";
|
|
|
|
sha256 = "1mwyps6yvrjxp7mpzc0a2hwr2pw050c63fc9aqjzdzjjw123dfrn";
|
2007-08-16 23:50:59 +04:00
|
|
|
};
|
|
|
|
|
2017-12-13 13:03:55 +03:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2016-11-19 12:19:54 +03:00
|
|
|
|
|
|
|
buildInputs = [ gettext libssl ];
|
2015-11-20 19:02:45 +03:00
|
|
|
|
|
|
|
installFlags = [ "ETCDIR=$(out)/etc" ];
|
|
|
|
|
2014-12-20 00:57:16 +03:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-05 18:22:46 +04:00
|
|
|
description = "Console downloading program with some features for parallel connections for faster downloading";
|
2019-05-25 18:58:45 +03:00
|
|
|
homepage = "https://github.com/axel-download-accelerator/axel";
|
2014-12-20 00:57:16 +03:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2018-03-14 22:49:54 +03:00
|
|
|
platforms = with platforms; linux;
|
2018-07-22 18:33:09 +03:00
|
|
|
license = licenses.gpl2;
|
2007-08-16 23:50:59 +04:00
|
|
|
};
|
|
|
|
}
|