telnet: use inetutils

Inetutils provides a cross-platform version of telnet. Normally I
would try to contact the old maintainer, but none is listed.
This commit is contained in:
Matthew Bauer 2018-05-15 10:27:53 -05:00
parent 202f19b225
commit 1d9d1fa780
3 changed files with 1 additions and 24 deletions

View file

@ -1,22 +0,0 @@
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "telnet-1.2";
src = fetchurl {
#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;
sha256 = "0cs7ks22dhcn5qfjv2vl6ikhw93x68gg33zdn5f5cxgg81kx5afn";
};
hardeningDisable = [ "format" ];
buildInputs = [ncurses];
meta = {
description = "A client and daemon for the Telnet protocol";
homepage = ftp://ftp.suse.com/pub/people/kukuk/ipv6/;
license = "BSD";
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux;
};
}

View file

@ -200,6 +200,7 @@ mapAliases (rec {
sshfsFuse = sshfs-fuse; # added 2016-09
surf-webkit2 = surf; # added 2017-04-02
tahoelafs = tahoe-lafs; # added 2018-03-26
telnet = inetutils; # added 2018-05-15
system_config_printer = system-config-printer; # added 2016-01-03
telepathy_farstream = telepathy-farstream; # added 2018-02-25
telepathy_gabble = telepathy-gabble; # added 2018-02-25

View file

@ -5156,8 +5156,6 @@ with pkgs;
teamviewer = libsForQt5.callPackage ../applications/networking/remote/teamviewer { };
telnet = callPackage ../tools/networking/telnet { };
telegraf = callPackage ../servers/monitoring/telegraf { };
teleport = callPackage ../servers/teleport {};