2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, tcl, makeWrapper, autoreconfHook }:
|
2008-02-27 16:48:53 +01:00
|
|
|
|
2015-08-29 21:20:20 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "expect";
|
2021-02-12 04:23:10 +01:00
|
|
|
version = "5.45.4";
|
2012-01-18 21:51:52 +01:00
|
|
|
|
2008-02-27 16:48:53 +01:00
|
|
|
src = fetchurl {
|
2013-09-03 23:57:51 +02:00
|
|
|
url = "mirror://sourceforge/expect/Expect/${version}/expect${version}.tar.gz";
|
2018-02-26 06:00:08 +01:00
|
|
|
sha256 = "0d1cp5hggjl93xwc8h1y6adbnrvpkk0ywkd00inz9ndxn21xm9s9";
|
2008-02-27 16:48:53 +01:00
|
|
|
};
|
|
|
|
|
2013-09-03 23:57:51 +02:00
|
|
|
buildInputs = [ tcl ];
|
2020-01-03 16:55:14 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper autoreconfHook ];
|
2008-02-27 16:48:53 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-23 02:59:47 +01:00
|
|
|
|
2020-02-17 00:54:41 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed -i "s,/bin/stty,$(type -p stty),g" configure.in
|
2008-04-04 20:24:41 +02:00
|
|
|
'';
|
2012-01-18 21:51:52 +01:00
|
|
|
|
2013-09-03 23:57:51 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--with-tcl=${tcl}/lib"
|
2012-01-18 21:51:52 +01:00
|
|
|
"--with-tclinclude=${tcl}/include"
|
2015-04-30 20:43:04 +02:00
|
|
|
"--exec-prefix=\${out}"
|
2020-01-19 22:10:14 +01:00
|
|
|
];
|
2013-09-03 23:57:51 +02:00
|
|
|
|
2015-01-07 04:05:46 +01:00
|
|
|
postInstall = ''
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
wrapProgram $i \
|
|
|
|
--prefix PATH : "${tcl}/bin" \
|
2015-08-29 21:20:20 +02:00
|
|
|
--prefix TCLLIBPATH ' ' $out/lib/* \
|
2021-01-15 10:19:50 +01:00
|
|
|
${lib.optionalString stdenv.isDarwin "--prefix DYLD_LIBRARY_PATH : $out/lib/expect${version}"}
|
2015-01-07 04:05:46 +01:00
|
|
|
done
|
|
|
|
'';
|
2008-02-27 16:48:53 +01:00
|
|
|
|
2021-02-14 09:17:09 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2008-02-27 16:48:53 +01:00
|
|
|
description = "A tool for automating interactive applications";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://expect.sourceforge.net/";
|
2021-02-12 04:23:10 +01:00
|
|
|
license = licenses.publicDomain;
|
2015-08-29 21:20:20 +02:00
|
|
|
platforms = platforms.unix;
|
2021-02-12 04:23:10 +01:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2008-02-27 16:48:53 +01:00
|
|
|
};
|
|
|
|
}
|