python27: compile with tkinterp on darwin

This commit is contained in:
Jason \"Don\" O'Conal
2013-06-30 09:49:55 +10:00
committed by Rok Garbas
parent bd61c42d22
commit 9007e57f28
3 changed files with 6 additions and 5 deletions

View File

@@ -1,6 +1,5 @@
{ stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2
, sqlite, tcl, tk, x11, openssl, readline, db4, ncurses, gdbm
}:
, sqlite, tcl, tk, x11, openssl, readline, db4, ncurses, gdbm, libX11 }:
assert zlibSupport -> zlib != null;
@@ -179,7 +178,7 @@ let
tkinter = buildInternalPythonModule {
moduleName = "tkinter";
deps = [ tcl tk x11 ];
deps = [ tcl tk x11 libX11 ];
};
readline = buildInternalPythonModule {