jimtcl: 0.81 -> 0.82

This commit is contained in:
Francesco Gazzetta 2023-03-07 10:20:46 +01:00
parent ba18b89aa3
commit 5fc58a9cb4

View file

@ -10,17 +10,18 @@
, readline , readline
, SDL , SDL
, SDL_gfx , SDL_gfx
, openssl
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "jimtcl"; pname = "jimtcl";
version = "0.81"; version = "0.82";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "msteveb"; owner = "msteveb";
repo = "jimtcl"; repo = "jimtcl";
rev = version; rev = version;
sha256 = "sha256-OpM9y7fQ+18qxl3/5wUCrNA9qiCdA0vTHqLYSw2lvJs="; sha256 = "sha256-CDjjrxpoTbLESAbCiCjQ8+E/oJP87gDv9SedQOzH3QY=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -29,7 +30,11 @@ stdenv.mkDerivation rec {
]; ];
buildInputs = [ buildInputs = [
sqlite readline SDL SDL_gfx sqlite
readline
SDL
SDL_gfx
openssl
]; ];
configureFlags = [ configureFlags = [
@ -51,15 +56,13 @@ stdenv.mkDerivation rec {
preCheck = '' preCheck = ''
# test exec2-3.2 fails depending on platform or sandboxing (?) # test exec2-3.2 fails depending on platform or sandboxing (?)
rm tests/exec2.test rm tests/exec2.test
# requires internet access
rm tests/ssl.test
''; '';
# test posix-1.6 needs the "hostname" command # test posix-1.6 needs the "hostname" command
nativeCheckInputs = [ inetutils ]; nativeCheckInputs = [ inetutils ];
postInstall = ''
ln -sr $out/lib/libjim.so.${version} $out/lib/libjim.so
'';
meta = { meta = {
description = "An open source small-footprint implementation of the Tcl programming language"; description = "An open source small-footprint implementation of the Tcl programming language";
homepage = "http://jim.tcl.tk/"; homepage = "http://jim.tcl.tk/";