nixpkgs/pkgs/development/libraries/tk/default.nix

34 lines
779 B
Nix
Raw Normal View History

2013-06-29 22:39:32 +00:00
{ stdenv, fetchurl, tcl, x11, libX11 }:
stdenv.mkDerivation {
name = "tk-8.5.7";
src = fetchurl {
url = "mirror://sourceforge/tcl/tk8.5.7-src.tar.gz";
sha256 = "0c5gsy3nlwl0wn9swz4k4v7phy7nzjl317gca1jykgf4jz9nwdnr";
};
postInstall = ''
ln -s $out/bin/wish* $out/bin/wish
'';
configureFlags = "--with-tcl=${tcl}/lib";
preConfigure = "cd unix";
2013-06-29 22:39:32 +00:00
buildInputs = [ tcl x11 libX11 ];
inherit tcl;
passthru = {
libPrefix = "tk8.5";
};
2013-06-29 22:39:32 +00: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/;
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
2013-06-29 22:39:32 +00:00
platforms = stdenv.lib.platforms.all;
};
}