guix-devel
[Top][All Lists]
Advanced

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

[PATCH 16/23] gnu: Add dialog.


From: Leo Famulari
Subject: [PATCH 16/23] gnu: Add dialog.
Date: Tue, 24 Nov 2015 16:02:16 -0500

* 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 <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,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




reply via email to

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