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.
21 lines
483 B
Nix
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";
|
|
};
|
|
}
|