mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
3ee1b52371
Changelog for Tcl: https://github.com/tcltk/tcl/blob/core-8-6-9/changes#L8797 Changelog for Tk: https://github.com/tcltk/tk/blob/master/changes#L7417 Tk release is actually v8.6.9.1 while Tcl is v8.6.9
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ stdenv
|
|
|
|
# Version specific stuff
|
|
, release, version, src
|
|
, ...
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tcl-${version}";
|
|
|
|
inherit src;
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
setOutputFlags = false;
|
|
|
|
preConfigure = ''
|
|
cd unix
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--enable-threads"
|
|
# Note: using $out instead of $man to prevent a runtime dependency on $man.
|
|
"--mandir=${placeholder "out"}/share/man"
|
|
"--enable-man-symlinks"
|
|
# Don't install tzdata because NixOS already has a more up-to-date copy.
|
|
"--with-tzdata=no"
|
|
"tcl_cv_strtod_unbroken=ok"
|
|
] ++ stdenv.lib.optional stdenv.is64bit "--enable-64bit";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postInstall = ''
|
|
make install-private-headers
|
|
ln -s $out/bin/tclsh${release} $out/bin/tclsh
|
|
ln -s $out/lib/libtcl${release}.so $out/lib/libtcl.so
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The Tcl scripting language";
|
|
homepage = https://www.tcl.tk/;
|
|
license = licenses.tcltk;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ vrthra ];
|
|
};
|
|
|
|
passthru = rec {
|
|
inherit release version;
|
|
libPrefix = "tcl${release}";
|
|
libdir = "lib/${libPrefix}";
|
|
};
|
|
}
|