Added codeville - a distributed revision control system with special efforts spent on merging. Heh, efforts into RCS availability seem to have side effects on Python side, too..
svn path=/nixpkgs/trunk/; revision=11891
This commit is contained in:
23
pkgs/applications/version-management/codeville/0.8.0.nix
Normal file
23
pkgs/applications/version-management/codeville/0.8.0.nix
Normal file
@@ -0,0 +1,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-" + version;
|
||||
meta = {
|
||||
description = "Codeville - RCS with powerful merge.";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user