2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, autoconf-archive
|
2021-01-17 03:51:22 +00:00
|
|
|
, pkg-config, gettext, libssl, txt2man }:
|
2007-08-16 20:50:59 +01:00
|
|
|
|
2014-12-19 21:57:16 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-07-12 10:31:45 +01:00
|
|
|
pname = "axel";
|
2024-04-08 02:00:42 +01:00
|
|
|
version = "2.17.14";
|
2014-12-19 21:57:16 +00:00
|
|
|
|
2019-07-12 10:31:45 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "axel-download-accelerator";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-04-08 02:00:42 +01:00
|
|
|
sha256 = "sha256-5GUna5k8GhAx1Xe8n9IvXT7IO6gksxCLh+sMANlxTBM=";
|
2007-08-16 20:50:59 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config autoconf-archive txt2man ];
|
2016-11-19 09:19:54 +00:00
|
|
|
|
|
|
|
buildInputs = [ gettext libssl ];
|
2015-11-20 16:02:45 +00:00
|
|
|
|
2019-08-14 03:55:13 +01:00
|
|
|
installFlags = [ "ETCDIR=${placeholder "out"}/etc" ];
|
2015-11-20 16:02:45 +00:00
|
|
|
|
2022-09-17 04:02:00 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/doc
|
|
|
|
cp doc/axelrc.example $out/share/doc/axelrc.example
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2013-10-05 15:22:46 +01:00
|
|
|
description = "Console downloading program with some features for parallel connections for faster downloading";
|
2019-05-25 16:58:45 +01:00
|
|
|
homepage = "https://github.com/axel-download-accelerator/axel";
|
2014-12-19 21:57:16 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2020-01-13 10:04:58 +00:00
|
|
|
platforms = with platforms; unix;
|
2024-04-26 12:35:31 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2024-02-11 02:19:15 +00:00
|
|
|
mainProgram = "axel";
|
2007-08-16 20:50:59 +01:00
|
|
|
};
|
|
|
|
}
|