20 lines
473 B
Nix
20 lines
473 B
Nix
|
args : with args;
|
||
|
rec {
|
||
|
src = fetchurl {
|
||
|
url = http://darcs.arstecnica.it/tailor-0.9.35.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";
|
||
|
};
|
||
|
}
|
||
|
|