nixpkgs/pkgs/tools/networking/aria/default.nix
Bjørn Forsman 28ac782583 Some description fixes
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.
2013-10-05 19:36:23 +02:00

22 lines
499 B
Nix

args : with args;
let version="0.14.0"; in
rec {
src = /* Here a fetchurl expression goes */
fetchurl {
url = "mirror://sourceforge/aria2/aria2c-${version}.tar.bz2";
sha256 = "0d6vpy7f4228byahsg4dlhalfkbscx941klhdlxd0y5c3mxxwkfr";
};
buildInputs = [];
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = ["doConfigure" "doMakeInstall"];
name = "aria-" + version;
meta = {
description = "Multiprotocol download manager";
};
}