all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Leo Famulari <leo@famulari.name>
To: guix-devel@gnu.org
Subject: [PATCH 16/23] gnu: Add dialog.
Date: Tue, 24 Nov 2015 16:02:16 -0500	[thread overview]
Message-ID: <88edaa9d6aaa7f86d0edad31a4730b7637101b42.1448398884.git.leo@famulari.name> (raw)
In-Reply-To: <cover.1448398884.git.leo@famulari.name>
In-Reply-To: <cover.1448398884.git.leo@famulari.name>

* gnu/packages/python.scm (dialog): New variable.
---
 gnu/packages/ncurses.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/ncurses.scm b/gnu/packages/ncurses.scm
index 2b0d442..176378d 100644
--- a/gnu/packages/ncurses.scm
+++ b/gnu/packages/ncurses.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
+;;; Copyright © 2015 Leo Famulari <leo@famulari.name>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -110,3 +111,25 @@ implement user interfaces for command-line applications.  The accompanying
 ncursesw library provides wide character support.")
      (license x11)
      (home-page "http://www.gnu.org/software/ncurses/"))))
+
+(define-public dialog
+  (package
+    (name "dialog")
+    (version "1.2-20150920")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                     "http://invisible-island.net/datafiles/release/"
+                     "dialog.tar.gz"))
+              (sha256
+                (base32
+                  "01ccd585c241nkj02n0zdbx8jqhylgcfpcmmshynh0c7fv2ixrn4"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f)) ; no test suite
+    (inputs
+     `(("ncurses" ,ncurses)))
+    (synopsis "Curses widgets")
+    (description "A script-interpreter which provides a set of curses widgets.")
+    (home-page "http://invisible-island.net/dialog/dialog.html")
+    (license (list lgpl2.1 gpl3)))) ; some components are GPL v3
-- 
2.6.2

  parent reply	other threads:[~2015-11-24 21:00 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-24 21:02 [PATCH 00/23] WIP: Add the Let's Encrypt client Leo Famulari
2015-11-24 21:02 ` [PATCH 01/23] gnu: Add python-zope-event Leo Famulari
2015-11-24 21:02 ` [PATCH 02/23] gnu: Add python-zope-interface Leo Famulari
2015-11-24 21:02 ` [PATCH 03/23] gnu: Add python-zope-exceptions Leo Famulari
2015-11-24 21:02 ` [PATCH 04/23] gnu: Add python-zope-testing Leo Famulari
2015-11-24 21:02 ` [PATCH 05/23] gnu: Add python-zope-testrunner Leo Famulari
2015-11-24 21:02 ` [PATCH 06/23] gnu: Add python-zope-i18nmessageid Leo Famulari
2015-11-24 21:02 ` [PATCH 07/23] gnu: Add python-zope-schema Leo Famulari
2015-11-24 21:02 ` [PATCH 08/23] gnu: Add python-zope-configuration Leo Famulari
2015-11-24 21:02 ` [PATCH 09/23] gnu: Add python-zope-proxy Leo Famulari
2015-11-24 21:02 ` [PATCH 10/23] gnu: Add python-zope-location Leo Famulari
2015-11-24 21:02 ` [PATCH 11/23] gnu: Add python-zope-security Leo Famulari
2015-11-24 21:02 ` [PATCH 12/23] gnu: Add python-zope-component Leo Famulari
2015-11-24 21:02 ` [PATCH 13/23] gnu: Add python-pyrfc3339 Leo Famulari
2015-11-24 21:02 ` [PATCH 14/23] gnu: Add python-werkzeug Leo Famulari
2015-11-24 21:02 ` [PATCH 15/23] gnu: Add python-configobj Leo Famulari
2015-11-24 21:02 ` Leo Famulari [this message]
2015-11-25 20:21   ` [PATCH 16/23] gnu: Add dialog Efraim Flashner
2015-11-27  7:17     ` Leo Famulari
2015-11-24 21:02 ` [PATCH 17/23] gnu: Add python2-pythondialog Leo Famulari
2015-11-24 21:02 ` [PATCH 18/23] WIP: Add python-configargparse Leo Famulari
2015-11-24 21:02 ` [PATCH 19/23] gnu: Add python-ndg-httpsclient Leo Famulari
2015-11-24 21:02 ` [PATCH 20/23] gnu: python-parsedatetime: Update to 1.5 Leo Famulari
2015-11-25 20:32   ` Efraim Flashner
2015-11-24 21:02 ` [PATCH 21/23] gnu: Add python2-parsedatetime Leo Famulari
2015-11-24 21:02 ` [PATCH 22/23] gnu: Add acme Leo Famulari
2015-11-24 21:02 ` [PATCH 23/23] WIP: Add lets-encrypt Leo Famulari
2015-12-04 14:44 ` [PATCH 00/23] WIP: Add the Let's Encrypt client Thompson, David
2015-12-06 17:17 ` Thompson, David
2015-12-06 21:35   ` Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=88edaa9d6aaa7f86d0edad31a4730b7637101b42.1448398884.git.leo@famulari.name \
    --to=leo@famulari.name \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.