2014-01-13 12:08:20 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, tcl, libXft }:
|
2009-05-03 15:36:26 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-01-13 12:08:20 +00:00
|
|
|
name = "tk-8.5.15";
|
2009-11-18 09:39:59 +00:00
|
|
|
|
2009-05-03 15:36:26 +01:00
|
|
|
src = fetchurl {
|
2014-01-13 12:08:20 +00:00
|
|
|
url = "mirror://sourceforge/tcl/tk8.5.15-src.tar.gz";
|
|
|
|
sha256 = "0grj0k0hljvwiz913pafqibz18fzk9xjxf0nzqrd9zdls036fp41";
|
2009-05-03 15:36:26 +01:00
|
|
|
};
|
2014-01-25 02:36:20 +00:00
|
|
|
|
|
|
|
patches = [ ./different-prefix-with-tcl.patch ];
|
2009-11-18 09:39:59 +00:00
|
|
|
|
2009-05-03 15:36:26 +01:00
|
|
|
postInstall = ''
|
|
|
|
ln -s $out/bin/wish* $out/bin/wish
|
|
|
|
'';
|
2009-11-18 09:39:59 +00:00
|
|
|
|
|
|
|
configureFlags = "--with-tcl=${tcl}/lib";
|
|
|
|
|
2009-05-03 15:36:26 +01:00
|
|
|
preConfigure = "cd unix";
|
|
|
|
|
2014-01-13 12:08:20 +00:00
|
|
|
buildInputs = [ pkgconfig tcl libXft ];
|
2009-11-18 09:39:59 +00:00
|
|
|
|
2009-05-03 15:36:26 +01:00
|
|
|
inherit tcl;
|
2010-05-28 11:57:50 +01:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
libPrefix = "tk8.5";
|
|
|
|
};
|
2013-06-29 23:39:32 +01:00
|
|
|
|
|
|
|
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/;
|
2014-01-13 12:08:20 +00:00
|
|
|
license = stdenv.lib.licenses.tcltk;
|
2013-06-30 00:49:55 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
|
2013-06-29 23:39:32 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
2009-05-03 15:36:26 +01:00
|
|
|
}
|