From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Darrington Subject: [PATCH] gnu: Add talkfilters. Date: Fri, 27 Jun 2014 10:41:21 +0200 Message-ID: <1403858481-27258-1-git-send-email-jmd@gnu.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33873) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X0Rix-0004Tg-4l for guix-devel@gnu.org; Fri, 27 Jun 2014 04:41:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X0Rip-0004LJ-O1 for guix-devel@gnu.org; Fri, 27 Jun 2014 04:41:35 -0400 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 Cc: John Darrington * gnu/packages/games.scm (talkfilters): New variable. --- gnu/packages/games.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index ce75e6d..cda3b36 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -208,3 +208,23 @@ in the other direction. Multiple such commands are necessary to reach the level's exit. The game is presented in a 2D side view.") ;; Some source files are under bsd-3 and gpl2+ licenses. (license gpl3+))) + +(define-public talkfilters + (package + (name "talkfilters") + (version "2.3.8") + (source + (origin + (method url-fetch) + (uri (string-append "http://www.hyperrealm.com/" name "/" + name "-" version ".tar.gz")) + (sha256 + (base32 "19nc5vq4bnkjvhk8srqddzhcs93jyvpm9r6lzjzwc1mgf08yg0a6")))) + (build-system gnu-build-system) + (home-page "http://www.hyperrealm.com/talkfilters/") + (synopsis "Convert English text to humorous dialects") + (description "The GNU Talk Filters are programs that convert English text +into stereotyped or otherwise humorous dialects. The filters are provided as +a C library, so they can easily be integrated into other programs.") + (license gpl2+))) + -- 1.7.10.4