2021-03-04 20:35:28 +01:00
|
|
|
{ lib, stdenv, buildPackages, fetchurl, tcl, makeWrapper, autoreconfHook, fetchpatch }:
|
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
|
|
|
};
|
|
|
|
|
2021-03-04 20:35:28 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
2021-03-04 20:35:28 +01:00
|
|
|
url = "https://raw.githubusercontent.com/buildroot/buildroot/c05e6aa361a4049eabd8b21eb64a34899ef83fc7/package/expect/0001-enable-cross-compilation.patch";
|
2021-03-04 20:35:28 +01:00
|
|
|
sha256 = "1jwx2l1slidvcpahxbyqs942l81jd62rzbxliyd9lwysk38c8b6b";
|
|
|
|
})
|
|
|
|
];
|
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
|
|
|
|
2021-03-04 20:35:28 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook makeWrapper tcl ];
|
|
|
|
buildInputs = [ tcl ];
|
|
|
|
|
|
|
|
strictDeps = true;
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2013-09-03 23:57:51 +02:00
|
|
|
configureFlags = [
|
2021-03-04 20:35:28 +01:00
|
|
|
"--with-tcl=${buildPackages.tcl}/lib"
|
2012-01-18 21:51:52 +01:00
|
|
|
"--with-tclinclude=${tcl}/include"
|
2021-03-04 20:35:28 +01:00
|
|
|
"--exec-prefix=${placeholder "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
|
|
|
};
|
|
|
|
}
|