19 stdenv.mkDerivation (finalAttrs: {
23 src = fetchFromGitHub {
26 rev = finalAttrs.version;
27 sha256 = "sha256-CDjjrxpoTbLESAbCiCjQ8+E/oJP87gDv9SedQOzH3QY=";
40 ] ++ (lib.optionals SDLSupport [
55 ] ++ (lib.optional SDLSupport "--with-ext=sdl");
57 enableParallelBuilding = true;
61 # test exec2-3.2 fails depending on platform or sandboxing (?)
63 # requires internet access
65 # test fails due to timing in some environments
66 # https://github.com/msteveb/jimtcl/issues/282
70 # test posix-1.6 needs the "hostname" command
71 nativeCheckInputs = [ inetutils ];
74 description = "Open source small-footprint implementation of the Tcl programming language";
75 homepage = "http://jim.tcl.tk/";
76 license = lib.licenses.bsd2;
77 platforms = lib.platforms.all;
78 maintainers = with lib.maintainers; [ dbohdan fgaz ];