mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
python 2.5 beta 1
svn path=/nixpkgs/trunk/; revision=5580
This commit is contained in:
parent
6da726d56e
commit
a5615b51da
1 changed files with 16 additions and 0 deletions
16
pkgs/development/interpreters/python/python-2.5b1.nix
Normal file
16
pkgs/development/interpreters/python/python-2.5b1.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{stdenv, fetchurl, zlib ? null, zlibSupport ? true}:
|
||||
|
||||
assert zlibSupport -> zlib != null;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "python-2.5b1";
|
||||
src = fetchurl {
|
||||
url = http://www.python.org/ftp/python/2.5/Python-2.5b1.tgz;
|
||||
md5 = "957c8d24d2ba8d4ba028c7f348ac5c86";
|
||||
};
|
||||
buildInputs = [
|
||||
(if zlibSupport then zlib else null)
|
||||
];
|
||||
inherit zlibSupport;
|
||||
configureFlags = "--enable-shared";
|
||||
}
|
Loading…
Reference in a new issue