Files
nixpkgs/pkgs/by-name/el/eltclsh/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

50 lines
971 B
Nix

{
lib,
fetchgit,
automake,
autoconf,
libtool,
libedit,
tcl,
tk,
}:
tcl.mkTclDerivation rec {
pname = "eltclsh";
version = "1.20";
src = fetchgit {
url = "https://git.openrobots.org/robots/eltclsh.git";
rev = "eltclsh-${version}";
hash = "sha256-kNUT190DkY+NNUmBwHfSxgBLbSyc0MutVDLsRh7kFDE=";
};
nativeBuildInputs = [
automake
autoconf
libtool
];
buildInputs = [
libedit
tk
];
preConfigure = "NOCONFIGURE=1 ./autogen.sh";
configureFlags = [
"--enable-tclshrl"
"--enable-wishrl"
"--with-tk=${tk}/lib"
"--with-includes=${libedit.dev}/include/readline"
"--with-libtool=${libtool}"
];
meta = with lib; {
description = "Interactive shell for the TCL programming language based on editline";
homepage = "https://homepages.laas.fr/mallet/soft/shell/eltclsh";
license = licenses.bsd3;
maintainers = with maintainers; [ iwanb ];
platforms = platforms.all;
};
}