guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] gnu: Add powwow.


From: Nils Gillmann
Subject: [PATCH] gnu: Add powwow.
Date: Thu, 03 Mar 2016 13:03:58 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)

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+))))


>From 91697b7749fd26954807788bc0cb7c2918d9ea0c Mon Sep 17 00:00:00 2001
From: Nils Gillmann <address@hidden>
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 <address@hidden>
 ;;; Copyright © 2016 Pjotr Prins <address@hidden>
 ;;; Copyright © 2016 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2016 Nils Gillmann <address@hidden>
 ;;;
 ;;; 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
address@hidden 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

-- 
ng
irc://loupsycedyglgamf.onion:67/~NiAsterisk
https://psyced.org:34443/NiAsterisk/
EDN: https://wiki.c3d2.de/Echt_Dezentrales_Netz/en

reply via email to

[Prev in Thread] Current Thread [Next in Thread]