Remove multiversion expression for tailor for easier use of custom versions

svn path=/nixpkgs/trunk/; revision=15296
This commit is contained in:
Michael Raskin
2009-04-25 11:19:42 +00:00
parent e405332741
commit c26271927a
3 changed files with 3 additions and 21 deletions
@@ -0,0 +1,20 @@
args : with args;
let version = if args ? version then args.version else "0.9.35"; in
rec {
src = fetchurl {
url = "http://darcs.arstecnica.it/tailor-${version}.tar.gz";
sha256 = "061acapxxn5ab3ipb5nd3nm8pk2xj67bi83jrfd6lqq3273fmdjh";
};
buildInputs = [python makeWrapper];
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = ["installPythonPackage" "wrapBinContentsPython"];
name = "tailor-" + version;
meta = {
description = "Version control tools integration tool";
};
}