2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, lib, src, pkgconfig, tcl, libXft, patches ? []
|
2019-04-10 02:44:38 +01:00
|
|
|
, enableAqua ? stdenv.isDarwin, darwin
|
|
|
|
, ... }:
|
2009-05-03 15:36:26 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-04-27 04:55:07 +01:00
|
|
|
name = "tk-${tcl.version}";
|
2014-04-12 09:44:17 +01:00
|
|
|
|
2015-06-19 14:54:35 +01:00
|
|
|
inherit src patches;
|
2014-04-12 09:44:17 +01:00
|
|
|
|
2016-09-01 14:17:36 +01:00
|
|
|
outputs = [ "out" "man" "dev" ];
|
2016-09-01 14:15:07 +01:00
|
|
|
|
|
|
|
setOutputFlags = false;
|
2014-04-12 09:44:17 +01:00
|
|
|
|
2015-04-30 19:42:43 +01:00
|
|
|
preConfigure = ''
|
2016-09-01 14:15:07 +01:00
|
|
|
configureFlagsArray+=(--mandir=$man/share/man --enable-man-symlinks)
|
2015-04-30 19:42:43 +01:00
|
|
|
cd unix
|
|
|
|
'';
|
2014-04-12 09:44:17 +01:00
|
|
|
|
2016-09-01 14:15:07 +01:00
|
|
|
postInstall = ''
|
|
|
|
ln -s $out/bin/wish* $out/bin/wish
|
2016-12-25 19:35:51 +00:00
|
|
|
cp ../{unix,generic}/*.h $out/include
|
2019-04-22 22:47:48 +01:00
|
|
|
ln -s $out/lib/libtk${tcl.release}.so $out/lib/libtk.so
|
2019-05-27 19:54:51 +01:00
|
|
|
''
|
|
|
|
+ stdenv.lib.optionalString (stdenv.isDarwin) ''
|
|
|
|
cp ../macosx/*.h $out/include
|
2016-09-01 14:15:07 +01:00
|
|
|
'';
|
|
|
|
|
2015-04-30 19:42:43 +01:00
|
|
|
configureFlags = [
|
2019-04-22 22:47:48 +01:00
|
|
|
"--enable-threads"
|
2015-04-30 19:42:43 +01:00
|
|
|
"--with-tcl=${tcl}/lib"
|
2019-04-22 22:47:48 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.is64bit "--enable-64bit"
|
|
|
|
++ stdenv.lib.optional enableAqua "--enable-aqua";
|
2009-05-03 15:36:26 +01:00
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-06-20 17:39:41 +01:00
|
|
|
buildInputs = lib.optional enableAqua (with darwin.apple_sdk.frameworks; [ Cocoa ]);
|
2014-04-12 09:44:17 +01:00
|
|
|
|
2019-06-20 17:39:41 +01:00
|
|
|
propagatedBuildInputs = [ tcl libXft ];
|
2014-04-13 13:56:54 +01:00
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails. can't find itself
|
|
|
|
|
2009-05-03 15:36:26 +01:00
|
|
|
inherit tcl;
|
2010-05-28 11:57:50 +01:00
|
|
|
|
2015-04-27 04:55:07 +01:00
|
|
|
passthru = rec {
|
|
|
|
inherit (tcl) release version;
|
|
|
|
libPrefix = "tk${tcl.release}";
|
|
|
|
libdir = "lib/${libPrefix}";
|
2010-05-28 11:57:50 +01:00
|
|
|
};
|
2013-06-29 23:39:32 +01:00
|
|
|
|
2015-04-30 19:42:43 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-06-29 23:39:32 +01:00
|
|
|
description = "A widget toolkit that provides a library of basic elements for building a GUI in many different programming languages";
|
2019-04-22 22:47:48 +01:00
|
|
|
homepage = https://www.tcl.tk/;
|
2015-04-30 19:42:43 +01:00
|
|
|
license = licenses.tcltk;
|
|
|
|
platforms = platforms.all;
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ lovek323 vrthra ];
|
2013-06-29 23:39:32 +01:00
|
|
|
};
|
2009-05-03 15:36:26 +01:00
|
|
|
}
|