From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Subject: bug#19018: not provided by the ncurses library Date: Tue, 11 Nov 2014 20:53:20 +0800 Message-ID: <87ioiloq4f.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32961) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoAxW-0007he-Ky for bug-guix@gnu.org; Tue, 11 Nov 2014 07:54:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XoAxP-0008AU-0K for bug-guix@gnu.org; Tue, 11 Nov 2014 07:54:10 -0500 Received: from debbugs.gnu.org ([140.186.70.43]:59721) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoAxO-0008AO-TI for bug-guix@gnu.org; Tue, 11 Nov 2014 07:54:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1XoAxO-00089l-E4 for bug-guix@gnu.org; Tue, 11 Nov 2014 07:54:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32813) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoAww-0007gx-7S for bug-guix@gnu.org; Tue, 11 Nov 2014 07:53:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XoAwo-00084R-NX for bug-guix@gnu.org; Tue, 11 Nov 2014 07:53:34 -0500 Received: from mail-pd0-x236.google.com ([2607:f8b0:400e:c02::236]:54594) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoAwo-000841-GJ for bug-guix@gnu.org; Tue, 11 Nov 2014 07:53:26 -0500 Received: by mail-pd0-f182.google.com with SMTP id fp1so10094337pdb.27 for ; Tue, 11 Nov 2014 04:53:24 -0800 (PST) Received: from localhost ([171.83.19.206]) by mx.google.com with ESMTPSA id fm15sm19304997pdb.58.2014.11.11.04.53.22 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 11 Nov 2014 04:53:23 -0800 (PST) List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: 19018@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi, gtypist check and use ncurses header from that location, perhaps we should make a symlink in ncurses just as nixpkgs does. And here is my patch for gtypist: --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-GNU-Typist.patch >From 4cfd5ede203eb3a105a7396ccf784f756150f90c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Tue, 11 Nov 2014 20:34:22 +0800 Subject: [PATCH] gnu: Add GNU Typist. * gnu/packages/games.scm (gtypist): New variable. --- gnu/packages/games.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index df24c0d..5759c07 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -462,3 +462,27 @@ you control to bounce a ball around the game zone destroying blocks with a proton ball. Each block carries a different point value. The more blocks you destroy, the better your score. The person with the highest score wins.") (license (x11-style "file://COPYING" "Very similar to the X11 licence.")))) + +(define-public gtypist + (package + (name "gtypist") + (version "2.9.5") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnu/gtypist/gtypist-" + version ".tar.xz")) + (sha256 + (base32 + "0xzrkkmj0b1dw3yr0m9hml2y634cc4h61im6zwcq57s7285z8fn1")))) + (build-system gnu-build-system) + (inputs `(("ncurses" ,ncurses))) + (home-page "http://www.gnu.org/software/gtypist/") + (synopsis "Universal typing tutor") + (description + "Typist is a typing tutor package built using Curses. The package has +tutorials, drills, and practice sessions to learn touch typing. The emphasis +is on the US computer keyboard layout, but lessons for Dvorak and other +keyboard types and languages are also included. The program also has Native +Language Support and is distributed with messages in many different languages.") + (license gpl3+))) -- 1.9.2 --=-=-=--