From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nils Gillmann Subject: [PATCH] gnu: Add powwow. Date: Thu, 03 Mar 2016 13:03:58 +0100 Message-ID: <871t7r7opd.fsf@grrlz.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58264) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1abRzS-0006Hw-QI for guix-devel@gnu.org; Thu, 03 Mar 2016 07:04:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1abRzN-0003pF-Du for guix-devel@gnu.org; Thu, 03 Mar 2016 07:04:22 -0500 Received: from plane.gmane.org ([80.91.229.3]:52931) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1abRzN-0003p8-7e for guix-devel@gnu.org; Thu, 03 Mar 2016 07:04:17 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1abRzL-0002k9-Uh for guix-devel@gnu.org; Thu, 03 Mar 2016 13:04:16 +0100 Received: from xd9bb8d49.dyn.telefonica.de ([217.187.141.73]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 03 Mar 2016 13:04:15 +0100 Received: from niasterisk by xd9bb8d49.dyn.telefonica.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 03 Mar 2016 13:04:15 +0100 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain This patch adds powwow, a telnet client which can be used for MUDs. I just noticed I made 2 minor mistakes: + (home-page "http://www.hoopajoo/projects/powwow.html") should be: + (home-page "http://www.hoopajoo.net/projects/powwow.html") and + ;; The following files are GPLv3+: + ;; config.guess, config.sub, depcomp, ... + (license (list license:gpl2+ license:gpl3+)))) should be: + ;; The following files are GPLv3+: + ;; config.guess, config.sub, depcomp + (license (list license:gpl2+ license:gpl3+)))) --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-powwow.patch Content-Transfer-Encoding: 8bit >From 91697b7749fd26954807788bc0cb7c2918d9ea0c Mon Sep 17 00:00:00 2001 From: Nils Gillmann Date: Thu, 3 Mar 2016 12:41:08 +0100 Subject: [PATCH] gnu: Add powwow. * gnu/packages/admin.scm (powwow): New variable. --- gnu/packages/admin.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index b0b2046..bbc27e4 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2016 Leo Famulari ;;; Copyright © 2016 Pjotr Prins ;;; Copyright © 2016 Ricardo Wurmus +;;; Copyright © 2016 Nils Gillmann ;;; ;;; This file is part of GNU Guix. ;;; @@ -1496,3 +1497,29 @@ for writing audit records to the disk. Viewing the logs is done with the @code{ausearch} or @code{aureport} utilities. Configuring the audit rules is done with the @code{auditctl} utility.") (license license:gpl2+))) + +(define-public powwow + (package + (name "powwow") + (version "1.2.17") + (source (origin + (method url-fetch) + (uri (string-append "http://www.hoopajoo.net/static/projects/powwow-" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1xmsg2y7qcvj67i9ilnih0mvfxcpni7fzrz343x9rdfnkkzf3pp8")))) + (inputs + `(("ncurses" ,ncurses))) + (build-system gnu-build-system) + (home-page "http://www.hoopajoo/projects/powwow.html") + (synopsis "POWWOW is a enhanced telnet client which can be used for MUD") + (description + "POWWOW is a client software which can be used for telnet as well as for +@dfn{Multi-User Dungeon} (MUD). Additionally it can serve as a nice client for +the chat server psyced with the specific config located at +http://lavachat.symlynx.com/unix/") + ;; The following files are GPLv3+: + ;; config.guess, config.sub, depcomp, ... + (license (list license:gpl2+ license:gpl3+)))) -- 2.6.3 --=-=-= Content-Type: text/plain -- ng irc://loupsycedyglgamf.onion:67/~NiAsterisk https://psyced.org:34443/NiAsterisk/ EDN: https://wiki.c3d2.de/Echt_Dezentrales_Netz/en --=-=-=--