about summary refs log tree commit diff
path: root/pkgs/applications/version-management/tailor/default.nix
blob: 54529503d82a05c93f1517cdbef82df70abd3d19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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/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";
  };
}