28ac782583
There are many more packages to fix, this is just a start. Rules: * Don't repeat the package name (not always that easy...) * Start with capital letter * Don't end with full stop * Don't start with "The ..." or "A ..." I've also added descriptions to some packages and rewritten others.
14 lines
380 B
Nix
14 lines
380 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "axel-2.4";
|
|
src = fetchurl {
|
|
url = https://alioth.debian.org/frs/download.php/3016/axel-2.4.tar.bz2;
|
|
sha256 = "ebc7d40e989c680d2afa632a17e5208101608924cf446da20814a6f3c3338612";
|
|
};
|
|
|
|
meta = {
|
|
description = "Console downloading program with some features for parallel connections for faster downloading";
|
|
};
|
|
}
|