[Nix-dev] python full ?
Marc Weber
marco-oweber at gmx.de
Wed Oct 22 03:20:30 CEST 2008
How does
python25Full = python25Base.meta.function {
db4 = if getConfig ["python" "db4Support"] false then db4 else null;
sqlite = if getConfig ["python" "sqliteSupport"] false then sqlite else null;
readline = if getConfig ["python" "readlineSupport"] false then readline else null;
openssl = if getConfig ["python" "opensslSupport"] false then openssl else null;
};
with default settings differ from
python25Base ?
So why do I have to set full to true *and* select eg readlineSupport?
Wouldn't python25Full be enough?
So replacing
python25 = getConfig [ "python" "full"] false then python25Full else python25Base;
by
python25 = python25Full;
?
Marc Weber
More information about the nix-dev
mailing list