mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
jimtcl: 0.78 -> 0.79
* jimtcl: 0.78 -> 0.79 (#74408) * jimtcl: enable new json extension and run tests + build shared to reduce closure size
This commit is contained in:
parent
d62852ea1c
commit
eac9b43a82
@ -5,35 +5,53 @@ let
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "jimtcl";
|
||||
version = "0.78";
|
||||
version = "0.79";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "msteveb";
|
||||
repo = "jimtcl";
|
||||
rev = version;
|
||||
sha256 = "1nrjxjfh69i35ig8sxdlal4ydd3cl0x68c05s6svnf1y2i1bl23j";
|
||||
sha256 = "1k88hz0v3bi19xdvlp0i9nsx38imzwpjh632w7326zwbv2wldf0h";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
sqlite readline asciidoc SDL SDL_gfx
|
||||
nativeBuildInputs = [
|
||||
asciidoc
|
||||
];
|
||||
|
||||
NIX_CFLAGS_COMPILE = makeSDLFlags [ SDL SDL_gfx ];
|
||||
buildInputs = [
|
||||
sqlite readline SDL SDL_gfx
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--shared"
|
||||
"--with-ext=oo"
|
||||
"--with-ext=tree"
|
||||
"--with-ext=binary"
|
||||
"--with-ext=sqlite3"
|
||||
"--with-ext=readline"
|
||||
"--with-ext=sdl"
|
||||
"--with-ext=json"
|
||||
"--enable-utf8"
|
||||
"--ipv6"
|
||||
];
|
||||
|
||||
NIX_CFLAGS_COMPILE = makeSDLFlags [ SDL SDL_gfx ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
doCheck = true;
|
||||
preCheck = ''
|
||||
# test exec2-3.2 fails depending on platform or sandboxing (?)
|
||||
rm tests/exec2.test
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
ln -sr $out/lib/libjim.so.${version} $out/lib/libjim.so
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "An open source small-footprint implementation of the Tcl programming language";
|
||||
homepage = http://jim.tcl.tk/;
|
||||
homepage = "http://jim.tcl.tk/";
|
||||
license = stdenv.lib.licenses.bsd2;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = with stdenv.lib.maintainers; [ dbohdan vrthra ];
|
||||
|
Loading…
Reference in New Issue
Block a user