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

42 lines
1,005 B
Nix
Raw Normal View History

2016-06-23 02:55:20 +00:00
{ 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${stdenv.lib.getDev p}/include/SDL");
in stdenv.mkDerivation rec {
name = "jimtcl-${version}";
version = "0.78";
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 = "1nrjxjfh69i35ig8sxdlal4ydd3cl0x68c05s6svnf1y2i1bl23j";
2014-09-09 11:18:58 +00:00
};
buildInputs = [
2016-06-23 02:55:20 +00:00
sqlite readline asciidoc SDL SDL_gfx
2014-09-09 11:18:58 +00:00
];
2017-02-08 00:11:16 +00:00
NIX_CFLAGS_COMPILE = makeSDLFlags [ SDL SDL_gfx ];
2016-09-01 08:26:10 +00:00
2014-09-09 11:18:58 +00:00
configureFlags = [
"--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"
2014-09-09 11:18:58 +00:00
"--enable-utf8"
"--ipv6"
];
meta = {
description = "An open source small-footprint implementation of the Tcl programming language";
2014-09-09 11:18:58 +00:00
homepage = http://jim.tcl.tk/;
license = stdenv.lib.licenses.bsd2;
platforms = stdenv.lib.platforms.all;
2016-06-23 02:55:20 +00:00
maintainers = with stdenv.lib.maintainers; [ dbohdan vrthra ];
2014-09-09 11:18:58 +00:00
};
}