summary refs log tree commit diff
path: root/pkgs/development/libraries/tclx/default.nix
blob: 3c814e17207cfa50744b115b0a6ee183e46472bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, fetchurl, tcl }:

tcl.mkTclDerivation rec {
  pname = "tclx";
  version = "8.4.1";

  src = fetchurl {
    url = "mirror://sourceforge/tclx/tclx${version}.tar.bz2";
    sha256 = "1v2qwzzidz0is58fd1p7wfdbscxm3ip2wlbqkj5jdhf6drh1zd59";
  };

  # required in order for tclx to properly detect tclx.tcl at runtime
  postInstall = let
    majorMinorVersion = lib.versions.majorMinor version;
  in ''
    ln -s $prefix/lib/tclx${majorMinorVersion} $prefix/lib/tclx${majorMinorVersion}/tclx${majorMinorVersion}
  '';

  meta = {
    homepage = "http://tclx.sourceforge.net/";
    description = "Tcl extensions";
    license = lib.licenses.tcltk;
    maintainers = with lib.maintainers; [ kovirobi ];
  };
}