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

23 lines
671 B
Nix
Raw Normal View History

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