diff --git a/pkgs/applications/version-management/tailor/0.9.31.nix b/pkgs/applications/version-management/tailor/0.9.31.nix new file mode 100644 index 000000000000..e32326782b49 --- /dev/null +++ b/pkgs/applications/version-management/tailor/0.9.31.nix @@ -0,0 +1,19 @@ +args : with args; +rec { + src = fetchurl { + url = http://darcs.arstecnica.it/tailor-0.9.31.tar.gz; + sha256 = "1apzd6mfmhgmxffzgzwsr17gnyqj6bycn783l9105cihsfcv9v3j"; + }; + + buildInputs = [python]; + configureFlags = []; + + /* doConfigure should be specified separately */ + phaseNames = ["installPythonPackage"]; + + name = "tailor-" + version; + meta = { + description = "Version control tools integration tool"; + }; +} +