pkgs/development/interpreters/python/3.1: major simplification of the expression

This change allows 'python3' to be built with approximately the same features
as 'python27Full'.

svn path=/nixpkgs/trunk/; revision=25757
This commit is contained in:
Peter Simons 2011-02-02 11:17:06 +00:00
parent 1620eb2311
commit d23005c2f9

View File

@ -1,53 +1,32 @@
{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2 { stdenv, fetchurl
, gdbmSupport ? true, gdbm ? null , zlib
, sqlite ? null , bzip2
, db4 ? null , gdbm
, readline ? null , sqlite
, openssl ? null , db4
, tk ? null , ncurses
, tcl ? null , readline
, libX11 ? null , openssl
, xproto ? null , tcl, tk
, arch ? null , libX11, xproto
, sw_vers ? null , arch ? null, sw_vers ? null
}: }:
# This derivation is mostly identical to the one that builds Python 2.x.
# Some of these settings may not apply to the latest version. A general
# cleanup might be worthwile.
assert zlibSupport -> zlib != null;
assert gdbmSupport -> gdbm != null;
assert stdenv.isDarwin -> arch != null; assert stdenv.isDarwin -> arch != null;
assert stdenv.isDarwin -> sw_vers != null; assert stdenv.isDarwin -> sw_vers != null;
assert readline != null -> ncurses != null;
with stdenv.lib; with stdenv.lib;
let let
majorVersion = "3.1"; majorVersion = "3.1";
version = "${majorVersion}.3"; version = "${majorVersion}.3";
buildInputs = buildInputs = filter (p: p != null) [
optional (stdenv ? gcc && stdenv.gcc.libc != null) stdenv.gcc.libc ++ zlib bzip2 gdbm sqlite db4 readline ncurses openssl tcl tk libX11 xproto arch sw_vers
[bzip2] ];
++ optional zlibSupport zlib
++ optional gdbmSupport gdbm
++ optional (sqlite != null) sqlite
++ optional (db4 != null) db4
++ optional (readline != null) readline
++ optional (openssl != null) openssl
++ optional (tk != null) tk
++ optional (tcl != null) tcl
++ optional (libX11 != null) libX11
++ optional (xproto != null) xproto
++ optional (arch != null) arch
++ optional (sw_vers != null) sw_vers
;
in in
stdenv.mkDerivation {
stdenv.mkDerivation ( {
name = "python3-${version}"; name = "python3-${version}";
inherit majorVersion version; inherit majorVersion version;
@ -56,24 +35,20 @@ stdenv.mkDerivation ( {
sha256 = "1jsqapgwrcqcaskyi2qdn1xj7l8x5340a137hdfshk5ya4dg9xkp"; sha256 = "1jsqapgwrcqcaskyi2qdn1xj7l8x5340a137hdfshk5ya4dg9xkp";
}; };
patches = [
# Look in C_INCLUDE_PATH and LIBRARY_PATH for stuff.
./search-path.patch
];
inherit buildInputs; inherit buildInputs;
patches = [ ./search-path.patch ];
C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p}/include") buildInputs); C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p}/include") buildInputs);
LIBRARY_PATH = concatStringsSep ":" (map (p: "${p}/lib") buildInputs); LIBRARY_PATH = concatStringsSep ":" (map (p: "${p}/lib") buildInputs);
configureFlags = "--enable-shared --with-threads --enable-unicode --with-wctype-functions"; configureFlags = "--enable-shared --with-threads --enable-unicode --with-wctype-functions";
preConfigure = '' preConfigure = ''
# Purity. for i in /usr /sw /opt /pkg; do # improve purity
for i in /usr /sw /opt /pkg; do
substituteInPlace ./setup.py --replace $i /no-such-path substituteInPlace ./setup.py --replace $i /no-such-path
done done
'' + (if readline != null then '' ${optionalString (ncurses != null) ''export NIX_LDFLAGS="$NIX_LDFLAGS -lncurses"''}
export NIX_LDFLAGS="$NIX_LDFLAGS -lncurses" ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''}
'' else ""); '';
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;
@ -82,7 +57,7 @@ stdenv.mkDerivation ( {
''; '';
passthru = { passthru = {
inherit zlibSupport; zlibSupport = zlib != null;
sqliteSupport = sqlite != null; sqliteSupport = sqlite != null;
db4Support = db4 != null; db4Support = db4 != null;
readlineSupport = readline != null; readlineSupport = readline != null;
@ -109,4 +84,4 @@ stdenv.mkDerivation ( {
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.simons ]; maintainers = [ stdenv.lib.maintainers.simons ];
}; };
} // (if stdenv.isDarwin then { NIX_CFLAGS_COMPILE = "-msse2" ; patches = [./search-path.patch]; } else {} ) ) }