2007-08-16 21:50:59 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2014-12-19 22:57:16 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "axel-${version}";
|
|
|
|
version = "2.4";
|
|
|
|
|
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";
|
2014-05-02 23:08:15 +02:00
|
|
|
sha256 = "0dl0r9byd2ps90cq2nj1y7ib6gnkb5y9f3a3fmhcnjrm9smmg6im";
|
2007-08-16 21:50:59 +02:00
|
|
|
};
|
|
|
|
|
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 ];
|
|
|
|
platforms = platforms.linux;
|
2007-08-16 21:50:59 +02:00
|
|
|
};
|
|
|
|
}
|