b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
52 lines
1.1 KiB
Nix
52 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
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The Tcl scription language";
|
|
homepage = http://www.tcl.tk/;
|
|
license = licenses.tcltk;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ vrthra ];
|
|
};
|
|
|
|
passthru = rec {
|
|
inherit release version;
|
|
libPrefix = "tcl${release}";
|
|
libdir = "lib/${libPrefix}";
|
|
};
|
|
}
|