about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/2.7
diff options
context:
space:
mode:
authorJason \"Don\" O'Conal <lovek323@gmail.com>2013-06-30 09:49:55 +1000
committerRok Garbas <rok@garbas.si>2013-07-04 13:11:25 +0200
commit9007e57f281cc692c7ac2682c088d5e48b161d76 (patch)
tree38533ff92c76a9812d8ced0dcf8c77172481c86a /pkgs/development/interpreters/python/2.7
parentbd61c42d223864e6582584f7ac1c5db0a3987150 (diff)
downloadnixlib-9007e57f281cc692c7ac2682c088d5e48b161d76.tar
nixlib-9007e57f281cc692c7ac2682c088d5e48b161d76.tar.gz
nixlib-9007e57f281cc692c7ac2682c088d5e48b161d76.tar.bz2
nixlib-9007e57f281cc692c7ac2682c088d5e48b161d76.tar.lz
nixlib-9007e57f281cc692c7ac2682c088d5e48b161d76.tar.xz
nixlib-9007e57f281cc692c7ac2682c088d5e48b161d76.tar.zst
nixlib-9007e57f281cc692c7ac2682c088d5e48b161d76.zip
python27: compile with tkinterp on darwin
Diffstat (limited to 'pkgs/development/interpreters/python/2.7')
-rw-r--r--pkgs/development/interpreters/python/2.7/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix
index ccb423ef32e4..76ef7399812b 100644
--- a/pkgs/development/interpreters/python/2.7/default.nix
+++ b/pkgs/development/interpreters/python/2.7/default.nix
@@ -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 {