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

25 lines
652 B
Nix
Raw Normal View History

2021-04-30 22:49:16 +00:00
{ lib, fetchurl, tcl }:
2016-07-16 19:51:15 +00:00
2021-04-30 22:49:16 +00:00
tcl.mkTclDerivation rec {
2016-07-16 19:51:15 +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-04-30 22:49:16 +00:00
# required in order for tclx to properly detect tclx.tcl at runtime
postInstall = ''
2021-05-11 17:25:25 +00:00
ln -s $prefix/lib/tclx${version} $prefix/lib/tclx${version}/tclx${version}
'';
2016-07-16 19:51:15 +00:00
meta = {
homepage = "http://tclx.sourceforge.net/";
2016-07-16 19:51:15 +00:00
description = "Tcl extensions";
license = lib.licenses.tcltk;
maintainers = with lib.maintainers; [ kovirobi ];
2016-07-16 19:51:15 +00:00
};
}