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
69 lines
1.6 KiB
Nix
69 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
automake,
|
|
autoconf,
|
|
libtool,
|
|
readline,
|
|
mkTclDerivation,
|
|
tk,
|
|
}:
|
|
|
|
mkTclDerivation rec {
|
|
pname = "tclreadline";
|
|
version = "2.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flightaware";
|
|
repo = "tclreadline";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-6FIQJsAm28jPIfNG+7xsMlCJSLw9JStOVzDemw2P+EI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
automake
|
|
autoconf
|
|
libtool
|
|
];
|
|
buildInputs = [
|
|
readline
|
|
tk
|
|
];
|
|
|
|
preConfigure = "NOCONFIGURE=1 ./autogen.sh";
|
|
|
|
configureFlags = [
|
|
"--enable-tclshrl"
|
|
"--enable-wishrl"
|
|
"--with-tk=${tk}/lib"
|
|
"--with-readline-includes=${readline.dev}/include/readline"
|
|
"--with-libtool=${libtool}"
|
|
];
|
|
|
|
# The provided makefile leaves a wrong reference to /build/ in RPATH,
|
|
# so we fix it after checking that everything is also present in $out
|
|
preFixup = lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
needed_libraries=$(ls .libs | grep '\.\(so\|la\)$')
|
|
for lib in $needed_libraries; do
|
|
if ! ls $out/lib | grep "$lib"; then
|
|
echo "$lib was not installed correctly"
|
|
exit 1
|
|
fi
|
|
done
|
|
for executable in $out/bin/{wishrl,tclshrl}; do
|
|
patchelf --set-rpath \
|
|
"$(patchelf --print-rpath "$executable" | sed "s@$builddir/.libs@$out/lib@")" \
|
|
"$executable"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "GNU readline for interactive tcl shells";
|
|
homepage = "https://github.com/flightaware/tclreadline";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|