python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / tclx / default.nix
blob3c814e17207cfa50744b115b0a6ee183e46472bc
1 { lib, fetchurl, tcl }:
3 tcl.mkTclDerivation rec {
4   pname = "tclx";
5   version = "8.4.1";
7   src = fetchurl {
8     url = "mirror://sourceforge/tclx/tclx${version}.tar.bz2";
9     sha256 = "1v2qwzzidz0is58fd1p7wfdbscxm3ip2wlbqkj5jdhf6drh1zd59";
10   };
12   # required in order for tclx to properly detect tclx.tcl at runtime
13   postInstall = let
14     majorMinorVersion = lib.versions.majorMinor version;
15   in ''
16     ln -s $prefix/lib/tclx${majorMinorVersion} $prefix/lib/tclx${majorMinorVersion}/tclx${majorMinorVersion}
17   '';
19   meta = {
20     homepage = "http://tclx.sourceforge.net/";
21     description = "Tcl extensions";
22     license = lib.licenses.tcltk;
23     maintainers = with lib.maintainers; [ kovirobi ];
24   };