2021-06-28 23:13:55 +00:00
|
|
|
{ lib, fetchurl, tcl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
tcl.mkTclDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
name = "tclx-${version}.${patch}";
|
|
|
|
version = "8.4";
|
|
|
|
patch = "1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/tclx/tclx${version}.${patch}.tar.bz2";
|
|
|
|
sha256 = "1v2qwzzidz0is58fd1p7wfdbscxm3ip2wlbqkj5jdhf6drh1zd59";
|
|
|
|
};
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
# required in order for tclx to properly detect tclx.tcl at runtime
|
|
|
|
postInstall = ''
|
|
|
|
ln -s $prefix/lib/tclx${version} $prefix/lib/tclx${version}/tclx${version}
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://tclx.sourceforge.net/";
|
|
|
|
description = "Tcl extensions";
|
2021-02-05 17:12:51 +00:00
|
|
|
license = lib.licenses.tcltk;
|
|
|
|
maintainers = with lib.maintainers; [ kovirobi ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|