nixpkgs/pkgs/applications/version-management/bazaar/tools.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

21 lines
483 B
Nix

args : with args;
rec {
version = "2.2.0";
src = fetchurl {
url = "http://launchpad.net/bzrtools/stable/${version}/+download/bzrtools-${version}.tar.gz";
sha256 = "835e0dc2b3b798d3c88b960bf719fe3b4cec7ae241908aafeb6aafe4c83f591b";
};
buildInputs = [];
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = [(simplyShare "bzrtools")];
name = "bzr-tools-${version}";
meta = {
description = "Bazaar plugins";
};
}