[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
16/23: gnu: Add dialog.
From: |
David Thompson |
Subject: |
16/23: gnu: Add dialog. |
Date: |
Sat, 05 Dec 2015 14:50:52 +0000 |
davexunit pushed a commit to branch master
in repository guix.
commit 44298269baae6cb8bbaa19e504f391c74cf5729b
Author: Leo Famulari <address@hidden>
Date: Tue Nov 24 00:01:38 2015 -0500
gnu: Add dialog.
* gnu/packages/python.scm (dialog): New variable.
---
gnu/packages/ncurses.scm | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/ncurses.scm b/gnu/packages/ncurses.scm
index 2b0d442..b7fbfc9 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 <address@hidden>
;;; Copyright © 2014 Mark H Weaver <address@hidden>
+;;; Copyright © 2015 Leo Famulari <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -110,3 +111,27 @@ 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-mirror.net/archives/dialog/dialog-"
+ version ".tgz"))
+ (sha256
+ (base32
+ "01ccd585c241nkj02n0zdbx8jqhylgcfpcmmshynh0c7fv2ixrn4"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f)) ; no test suite
+ (inputs
+ `(("ncurses" ,ncurses)))
+ (synopsis "Curses widgets")
+ (description "Dialog is a script-interpreter which provides a set of
+curses widgets, such as dialog boxes.")
+ (home-page "http://invisible-island.net/dialog/dialog.html")
+ ;; Includes the gpl3 file "config.sub" from Automake.
+ (license (list lgpl2.1 gpl3))))
- 04/23: gnu: Add python-zope-testing., (continued)
- 04/23: gnu: Add python-zope-testing., David Thompson, 2015/12/05
- 08/23: gnu: Add python-zope-configuration., David Thompson, 2015/12/05
- 09/23: gnu: Add python-zope-proxy., David Thompson, 2015/12/05
- 06/23: gnu: Add python-zope-i18nmessageid., David Thompson, 2015/12/05
- 07/23: gnu: Add python-zope-schema., David Thompson, 2015/12/05
- 10/23: gnu: Add python-zope-location., David Thompson, 2015/12/05
- 11/23: gnu: Add python-zope-security., David Thompson, 2015/12/05
- 13/23: gnu: Add python-pyrfc3339., David Thompson, 2015/12/05
- 12/23: gnu: Add python-zope-component., David Thompson, 2015/12/05
- 14/23: gnu: Add python-werkzeug., David Thompson, 2015/12/05
- 16/23: gnu: Add dialog.,
David Thompson <=
- 17/23: gnu: Add python2-pythondialog., David Thompson, 2015/12/05
- 21/23: gnu: Add python2-parsedatetime., David Thompson, 2015/12/05
- 20/23: gnu: python-parsedatetime: Update to 1.5., David Thompson, 2015/12/05
- 15/23: gnu: Add python-configobj., David Thompson, 2015/12/05
- 18/23: gnu: Add python-configargparse., David Thompson, 2015/12/05
- 19/23: gnu: Add python-ndg-httpsclient., David Thompson, 2015/12/05
- 22/23: gnu: Add acme., David Thompson, 2015/12/05
- 23/23: gnu: Add letsencrypt., David Thompson, 2015/12/05