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