From 46b27751264724439912a0dcec26e1eda74c3b41 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 4 Jul 2008 06:53:44 +0000 Subject: [PATCH] Updated tailor svn path=/nixpkgs/trunk/; revision=12259 --- .../version-management/tailor/0.9.35.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pkgs/applications/version-management/tailor/0.9.35.nix diff --git a/pkgs/applications/version-management/tailor/0.9.35.nix b/pkgs/applications/version-management/tailor/0.9.35.nix new file mode 100644 index 00000000000..78486ec4fa0 --- /dev/null +++ b/pkgs/applications/version-management/tailor/0.9.35.nix @@ -0,0 +1,19 @@ +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"; + }; +} +