1 { lib, stdenv, fetchFromGitHub, autoreconfHook, autoconf-archive
2 , pkg-config, gettext, libssl, txt2man }:
4 stdenv.mkDerivation rec {
8 src = fetchFromGitHub {
9 owner = "axel-download-accelerator";
12 sha256 = "sha256-5GUna5k8GhAx1Xe8n9IvXT7IO6gksxCLh+sMANlxTBM=";
15 nativeBuildInputs = [ autoreconfHook pkg-config autoconf-archive txt2man ];
17 buildInputs = [ gettext libssl ];
19 installFlags = [ "ETCDIR=${placeholder "out"}/etc" ];
22 mkdir -p $out/share/doc
23 cp doc/axelrc.example $out/share/doc/axelrc.example
27 description = "Console downloading program with some features for parallel connections for faster downloading";
28 homepage = "https://github.com/axel-download-accelerator/axel";
29 maintainers = with maintainers; [ pSub ];
30 platforms = with platforms; unix;
31 license = licenses.gpl2Plus;