guix-devel
[Top][All Lists]
Advanced

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

[PATCH 06/29] gnu: Add ghc-terminfo.


From: ng0
Subject: [PATCH 06/29] gnu: Add ghc-terminfo.
Date: Sat, 3 Sep 2016 12:46:05 +0000

* gnu/packages/haskell.scm (ghc-terminfo): New variable.
---
 gnu/packages/haskell.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 6700b51..f3d43c4 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -6536,4 +6536,26 @@ that hide the C implementation.")
      "This module provides set and multiset operations on ordered lists.")
     (license license:bsd-3)))
 
+(define-public ghc-terminfo
+  (package
+    (name "ghc-terminfo")
+    (version "0.4.0.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://hackage.haskell.org/package/terminfo/terminfo-";
+             version ".tar.gz"))
+       (sha256
+        (base32
+         "0mpqv0wn2x03mw8myc4j75hsgh1575dni6bndhqzspiz8hl8pa7y"))))
+    (build-system haskell-build-system)
+    (home-page "https://github.com/judah/terminfo";)
+    (synopsis "Haskell bindings to the terminfo library.")
+    (description
+     "This library provides an interface to the terminfo database
+via bindings to the curses library.  Terminfo allows POSIX systems
+to interact with a variety of terminals using a standard set of capabilities.")
+    (license license:bsd-3)))
+
 ;;; haskell.scm ends here
-- 
2.9.3




reply via email to

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