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:
@@ -1,6 +1,7 @@
|
||||
{stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2,
|
||||
gdbmSupport ? true, gdbm ? null
|
||||
, sqlite ? null
|
||||
, db4 ? null
|
||||
}:
|
||||
|
||||
assert zlibSupport -> zlib != null;
|
||||
@@ -16,6 +17,7 @@ let
|
||||
++ optional zlibSupport zlib
|
||||
++ optional gdbmSupport gdbm
|
||||
++ optional (sqlite != null) sqlite
|
||||
++ optional (db4 != null) db4
|
||||
;
|
||||
|
||||
in
|
||||
@@ -54,6 +56,8 @@ stdenv.mkDerivation {
|
||||
|
||||
passthru = {
|
||||
inherit zlibSupport;
|
||||
sqliteSupport = sqlite != null;
|
||||
db4Support = db4 != null;
|
||||
libPrefix = "python2.5";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user