python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / eltclsh / default.nix
blobc0c8adc047c74e66bb4c84d8b01361fbfe1a2750
1 { lib
2 , stdenv
3 , fetchgit
4 , automake
5 , autoconf
6 , libtool
7 , libedit
8 , tcl
9 , tk
12 tcl.mkTclDerivation rec {
13   pname = "eltclsh";
14   version = "1.18";
16   src = fetchgit {
17     url = "https://git.openrobots.org/robots/eltclsh.git";
18     rev = "eltclsh-${version}";
19     hash = "sha256-C996BJxEoCSpA0x/nSnz4nnmleTIWyzm0imZp/K+Q/o=";
20   };
22   nativeBuildInputs = [
23     automake
24     autoconf
25     libtool
26   ];
27   buildInputs = [
28     libedit
29     tk
30   ];
32   preConfigure = "NOCONFIGURE=1 ./autogen.sh";
34   configureFlags = [
35     "--enable-tclshrl"
36     "--enable-wishrl"
37     "--with-tk=${tk}/lib"
38     "--with-includes=${libedit.dev}/include/readline"
39     "--with-libtool=${libtool}"
40   ];
42   meta = with lib; {
43     description = "Interactive shell for the TCL programming language based on editline";
44     homepage = "https://homepages.laas.fr/mallet/soft/shell/eltclsh";
45     license = licenses.bsd3;
46     maintainers = with maintainers; [ iwanb ];
47     platforms = platforms.all;
48   };