571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
49 lines
961 B
Nix
49 lines
961 B
Nix
{ lib
|
|
, fetchgit
|
|
, automake
|
|
, autoconf
|
|
, libtool
|
|
, libedit
|
|
, tcl
|
|
, tk
|
|
}:
|
|
|
|
tcl.mkTclDerivation rec {
|
|
pname = "eltclsh";
|
|
version = "1.19";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.openrobots.org/robots/eltclsh.git";
|
|
rev = "eltclsh-${version}";
|
|
hash = "sha256-YcJRaNct/cLNsjWk+NLzGiDYOG0jNgKudBczKckQU14=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|