* Added a telnet client.
svn path=/nixpkgs/trunk/; revision=9431
This commit is contained in:
parent
c86efaec81
commit
08f647a5e6
3 changed files with 25 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
# Perhaps we can get some ideas from here ? http://gentoo-wiki.com/HOWTO_Jack
|
||||
# still much to test but it compiles now
|
||||
args:
|
||||
args.mkDerivationByConfigruation {
|
||||
args.mkDerivationByConfiguration {
|
||||
flagConfig = {
|
||||
mandatory = { buildInputs = [ ];};
|
||||
|
||||
|
|
18
pkgs/tools/networking/telnet/default.nix
Normal file
18
pkgs/tools/networking/telnet/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -674,6 +674,10 @@ rec {
|
|||
inherit fetchurl stdenv libpcap;
|
||||
};
|
||||
|
||||
telnet = import ../tools/networking/telnet {
|
||||
inherit fetchurl stdenv ncurses;
|
||||
};
|
||||
|
||||
testdisk = import ../tools/misc/testdisk {
|
||||
inherit fetchurl stdenv ncurses libjpeg e2fsprogs zlib openssl;
|
||||
};
|
||||
|
@ -4170,11 +4174,13 @@ rec {
|
|||
#};
|
||||
|
||||
# using the new configuration style proposal which is unstable
|
||||
/*
|
||||
jackaudio = import ../misc/jackaudio {
|
||||
inherit mkDerivationByConfiguration
|
||||
ncurses lib stdenv fetchurl;
|
||||
flags = [ "posix_shm" "timestamps"];
|
||||
};
|
||||
*/
|
||||
|
||||
keynav = import ../tools/X11/keynav {
|
||||
inherit stdenv fetchurl;
|
||||
|
|
Loading…
Reference in a new issue