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