2007-10-09 09:56:39 +00:00
|
|
|
{stdenv, fetchurl, ncurses}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "telnet-1.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-03-21 11:26:13 +00:00
|
|
|
#url = ftp://ftp.suse.com/pub/people/kukuk/ipv6/telnet-bsd-1.2.tar.bz2; # broken
|
|
|
|
url = mirror://gentoo/distfiles/telnet-bsd-1.2.tar.bz2;
|
2007-10-09 09:56:39 +00:00
|
|
|
sha256 = "0cs7ks22dhcn5qfjv2vl6ikhw93x68gg33zdn5f5cxgg81kx5afn";
|
|
|
|
};
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-21 22:53:24 +00:00
|
|
|
|
2007-10-09 09:56:39 +00:00
|
|
|
buildInputs = [ncurses];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A client and daemon for the Telnet protocol";
|
|
|
|
homepage = ftp://ftp.suse.com/pub/people/kukuk/ipv6/;
|
|
|
|
license = "BSD";
|
2012-02-17 16:22:07 +00:00
|
|
|
platforms = stdenv.lib.platforms.gnu;
|
2007-10-09 09:56:39 +00:00
|
|
|
};
|
|
|
|
}
|