nixpkgs/pkgs/applications/version-management/tailor/default.nix
Michael Raskin c26271927a Remove multiversion expression for tailor for easier use of custom versions
svn path=/nixpkgs/trunk/; revision=15296
2009-04-25 11:19:42 +00:00

21 lines
547 B
Nix

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";
};
}