* Added a telnet client.

svn path=/nixpkgs/trunk/; revision=9431
This commit is contained in:
Eelco Dolstra
2007-10-09 09:56:39 +00:00
parent c86efaec81
commit 08f647a5e6
3 changed files with 25 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
{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;
sha256 = "0cs7ks22dhcn5qfjv2vl6ikhw93x68gg33zdn5f5cxgg81kx5afn";
};
buildInputs = [ncurses];
meta = {
description = "A client and daemon for the Telnet protocol";
homepage = ftp://ftp.suse.com/pub/people/kukuk/ipv6/;
license = "BSD";
};
}