2015-11-20 17:02:45 +01:00
|
|
|
{ stdenv, fetchurl, gettext }:
|
2007-08-16 21:50:59 +02:00
|
|
|
|
2014-12-19 22:57:16 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "axel-${version}";
|
2015-11-20 17:02:45 +01:00
|
|
|
version = "2.5";
|
2014-12-19 22:57:16 +01:00
|
|
|
|
2007-08-16 21:50:59 +02:00
|
|
|
src = fetchurl {
|
2014-12-19 22:57:16 +01:00
|
|
|
url = "mirror://debian/pool/main/a/axel/axel_${version}.orig.tar.gz";
|
2015-11-20 17:02:45 +01:00
|
|
|
sha256 = "10qsmfq2aprrxsm8sshpvzjjpxhmyv89mrik4clw9rprwxknfdq2";
|
2007-08-16 21:50:59 +02:00
|
|
|
};
|
|
|
|
|
2015-11-20 17:02:45 +01:00
|
|
|
buildInputs = [ gettext ];
|
|
|
|
|
|
|
|
installFlags = [ "ETCDIR=$(out)/etc" ];
|
|
|
|
|
2014-12-19 22:57:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-05 16:22:46 +02:00
|
|
|
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;
|
2007-08-16 21:50:59 +02:00
|
|
|
};
|
|
|
|
}
|