nixpkgs/pkgs/development/interpreters/jimtcl/default.nix

60 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, sqlite, readline, asciidoc, SDL, SDL_gfx }:
2014-09-09 11:18:58 +00:00
2017-02-08 00:11:16 +00:00
let
makeSDLFlags = map (p: "-I${lib.getDev p}/include/SDL");
2017-02-08 00:11:16 +00:00
in stdenv.mkDerivation rec {
pname = "jimtcl";
version = "0.79";
2014-09-09 11:18:58 +00:00
2016-06-23 02:55:20 +00:00
src = fetchFromGitHub {
owner = "msteveb";
repo = "jimtcl";
2017-02-08 00:11:16 +00:00
rev = version;
sha256 = "1k88hz0v3bi19xdvlp0i9nsx38imzwpjh632w7326zwbv2wldf0h";
2014-09-09 11:18:58 +00:00
};
nativeBuildInputs = [
asciidoc
2014-09-09 11:18:58 +00:00
];
buildInputs = [
sqlite readline SDL SDL_gfx
];
2016-09-01 08:26:10 +00:00
2014-09-09 11:18:58 +00:00
configureFlags = [
"--shared"
2014-09-09 11:18:58 +00:00
"--with-ext=oo"
"--with-ext=tree"
"--with-ext=binary"
"--with-ext=sqlite3"
2016-06-23 02:55:20 +00:00
"--with-ext=readline"
"--with-ext=sdl"
"--with-ext=json"
2014-09-09 11:18:58 +00:00
"--enable-utf8"
"--ipv6"
];
2019-10-30 02:23:29 +00:00
NIX_CFLAGS_COMPILE = toString (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
'';
2014-09-09 11:18:58 +00:00
meta = {
description = "An open source small-footprint implementation of the Tcl programming language";
homepage = "http://jim.tcl.tk/";
license = lib.licenses.bsd2;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ dbohdan vrthra ];
2014-09-09 11:18:58 +00:00
};
}