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