2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, ncurses, glibc }:
|
2014-11-09 08:26:15 -08:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2014-11-09 08:26:15 -08:00
|
|
|
name = "kermit-9.0.302";
|
2009-09-14 11:50:17 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "ftp://ftp.kermitproject.org/kermit/archives/cku302.tar.gz";
|
2014-11-09 08:26:15 -08:00
|
|
|
sha256 = "0487mh6s99ijqf1pfmbm302pa5i4pzmm8s439hdl1ffs5g8jqpqd";
|
2009-09-14 11:50:17 -07:00
|
|
|
};
|
|
|
|
|
2014-11-09 08:26:15 -08:00
|
|
|
buildInputs = [ ncurses glibc ];
|
2009-09-14 11:50:17 -07:00
|
|
|
|
|
|
|
unpackPhase = ''
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p src
|
2009-09-14 11:50:17 -07:00
|
|
|
pushd src
|
|
|
|
tar xvzf $src
|
|
|
|
'';
|
|
|
|
|
2020-12-26 16:34:09 -08:00
|
|
|
postPatch = ''
|
2009-09-14 11:50:17 -07:00
|
|
|
sed -i -e 's@-I/usr/include/ncurses@@' \
|
|
|
|
-e 's@/usr/local@'"$out"@ makefile
|
|
|
|
'';
|
2014-11-09 08:26:15 -08:00
|
|
|
|
2020-12-26 11:37:04 -08:00
|
|
|
buildPhase = "make -f makefile linux KFLAGS='-D_IO_file_flags' LNKFLAGS='-lcrypt -lresolv'";
|
2014-11-09 08:26:15 -08:00
|
|
|
|
2009-09-14 11:50:17 -07:00
|
|
|
installPhase = ''
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/bin
|
|
|
|
mkdir -p $out/man/man1
|
2009-09-14 11:50:17 -07:00
|
|
|
make -f makefile install
|
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.kermitproject.org/ck90.html";
|
2009-09-14 11:50:17 -07:00
|
|
|
description = "Portable Scriptable Network and Serial Communication Software";
|
2014-11-09 08:26:15 -08:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = with platforms; linux;
|
2009-09-14 11:50:17 -07:00
|
|
|
};
|
|
|
|
}
|