summary refs log tree commit diff
path: root/pkgs/applications/version-management/codeville/0.8.0.nix
blob: 5c1910d6c6f6ce824d926b07c24bb86239fa1aa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
args : with args; 

if (! python ? db4Support) || (! python.db4Support) then 
  throw ''Python DB4 support is required for codeville.'' 
else

rec {
  src = fetchurl {
    url = http://codeville.org/download/Codeville-0.8.0.tar.gz;
    sha256 = "1p8zc4ijwcwf5bxl34n8d44mlxk1zhbpca68r93ywxqkqm2aqz37";
  };

  buildInputs = [python makeWrapper];
  configureFlags = [];

  /* doConfigure should be specified separately */
  phaseNames = ["installPythonPackage" (makeManyWrappers ''$out/bin/*'' ''--prefix PYTHONPATH : $(toPythonPath $out)'')];
      
  name = "codeville-0.8.0";
  meta = {
    description = "RCS with powerful merge";
  };
}