1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/axel/default.nix

23 lines
640 B
Nix
Raw Normal View History

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