about summary refs log tree commit diff
path: root/pkgs/development/libraries/tk
diff options
context:
space:
mode:
authorJason \"Don\" O'Conal <lovek323@gmail.com>2013-06-30 08:39:32 +1000
committerRok Garbas <rok@garbas.si>2013-07-04 13:11:24 +0200
commitbd61c42d223864e6582584f7ac1c5db0a3987150 (patch)
tree14f9249d8309f6f66827193d214dc39e80dc2a2b /pkgs/development/libraries/tk
parentdff980733aa0f63bf8105f131dda5bc145f50112 (diff)
tk: fix build on darwin
Diffstat (limited to 'pkgs/development/libraries/tk')
-rw-r--r--pkgs/development/libraries/tk/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/development/libraries/tk/default.nix b/pkgs/development/libraries/tk/default.nix
index 290580e52129a..5cfd0d178eb68 100644
--- a/pkgs/development/libraries/tk/default.nix
+++ b/pkgs/development/libraries/tk/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, tcl, x11 }:
+{ stdenv, fetchurl, tcl, x11, libX11 }:
 
 stdenv.mkDerivation {
   name = "tk-8.5.7";
@@ -16,11 +16,18 @@ stdenv.mkDerivation {
   
   preConfigure = "cd unix";
 
-  buildInputs = [tcl x11];
+  buildInputs = [ tcl x11 libX11 ];
   
   inherit tcl;
 
   passthru = {
     libPrefix = "tk8.5";
   };
+
+  meta = {
+    description = "A widget toolkit that provides a library of basic elements for building a GUI in many different programming languages";
+    homepage = http://www.tcl.tk/;
+    maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ];
+    platforms = stdenv.lib.platforms.all;
+  };
 }