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

25 lines
715 B
Nix
Raw Normal View History

2016-11-19 10:19:54 +01:00
{ stdenv, fetchurl, autoreconfHook, gettext, libssl }:
2014-12-19 22:57:16 +01:00
stdenv.mkDerivation rec {
name = "axel-${version}";
2017-10-17 09:03:41 +02:00
version = "2.15";
2014-12-19 22:57:16 +01:00
src = fetchurl {
2014-12-19 22:57:16 +01:00
url = "mirror://debian/pool/main/a/axel/axel_${version}.orig.tar.gz";
2017-10-17 09:03:41 +02:00
sha256 = "0wm16s129615i7rw48422q3x3ixr4v2p9942p0s6qk2fjlc3y8hf";
};
2016-11-19 10:19:54 +01:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ gettext libssl ];
2015-11-20 17:02:45 +01:00
installFlags = [ "ETCDIR=$(out)/etc" ];
2014-12-19 22:57:16 +01:00
meta = with stdenv.lib; {
description = "Console downloading program with some features for parallel connections for faster downloading";
2014-12-19 22:57:16 +01:00
homepage = http://axel.alioth.debian.org/;
maintainers = with maintainers; [ pSub ];
2016-01-09 19:37:16 +01:00
platforms = with platforms; linux ++ darwin;
};
}