commit
ab7f92bf69
@ -1,16 +1,17 @@
|
|||||||
{ stdenv, fetchgit, sqlite }:
|
{ stdenv, fetchFromGitHub, sqlite, readline, asciidoc, SDL, SDL_gfx }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "jimtcl-0.75-git";
|
name = "jimtcl-0.76";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = https://github.com/msteveb/jimtcl.git;
|
owner = "msteveb";
|
||||||
rev = "c4d4bf8bc104733db1f5992a27d88fbfca9ba882";
|
repo = "jimtcl";
|
||||||
sha256 = "1dm1qmb35hlp0d4i15c78n8jmbv7nhz2cgbrjyn6fjy6cy67sq0r";
|
rev = "51f65c6d38fbf86e1f0b036ad336761fd2ab7fa0";
|
||||||
|
sha256 = "00ldal1w9ysyfmx28xdcaz81vaazr1fqixxb2abk438yfpp1i9hq";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
sqlite
|
sqlite readline asciidoc SDL SDL_gfx
|
||||||
];
|
];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
@ -18,15 +19,23 @@ stdenv.mkDerivation {
|
|||||||
"--with-ext=tree"
|
"--with-ext=tree"
|
||||||
"--with-ext=binary"
|
"--with-ext=binary"
|
||||||
"--with-ext=sqlite3"
|
"--with-ext=sqlite3"
|
||||||
|
"--with-ext=readline"
|
||||||
|
"--with-ext=sdl"
|
||||||
"--enable-utf8"
|
"--enable-utf8"
|
||||||
"--ipv6"
|
"--ipv6"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
preConfigurePhase = ''
|
||||||
|
export CFLAGS=$(sdl-config --cflags)
|
||||||
|
export LDFLAGS=$(sdl-config --libs)
|
||||||
|
'';
|
||||||
|
|
||||||
|
|
||||||
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/;
|
||||||
license = stdenv.lib.licenses.bsd2;
|
license = stdenv.lib.licenses.bsd2;
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
maintainers = with stdenv.lib.maintainers; [ dbohdan ];
|
maintainers = with stdenv.lib.maintainers; [ dbohdan vrthra ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user