nixpkgs/pkgs/development/interpreters/python/default.nix
Yury G. Kudryashov 732597e430 Let user to choose python2.4 or python2.5
Currently, there is some code duplication. I'll try to rewrite it without
modifying resulting derivations.

svn path=/nixpkgs/trunk/; revision=9670
2007-11-14 22:22:06 +00:00

6 lines
92 B
Nix

args: rec {
default = v_2_4;
v_2_4 = import ./2.4.nix args;
v_2_5 = import ./2.5 args;
}