guix-commits
[Top][All Lists]
Advanced

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

46/53: gnu: Add ghc-intervalmap.


From: Ricardo Wurmus
Subject: 46/53: gnu: Add ghc-intervalmap.
Date: Thu, 16 Aug 2018 11:05:03 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 657d220d172639e38bae65dba845f308daad6932
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Aug 15 12:15:19 2018 +0200

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

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index fcd6f50..d986ab5 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -9915,4 +9915,27 @@ programmers.  It is written in pure Haskell and thus 
should be extremely
 portable and easy to use.")
     (license license:bsd-3)))
 
+(define-public ghc-intervalmap
+  (package
+    (name "ghc-intervalmap")
+    (version "0.6.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://hackage.haskell.org/package/IntervalMap/";
+                           "IntervalMap-" version ".tar.gz"))
+       (sha256
+        (base32
+         "06hin9wf1by8aqa7820fsi2339bh82184frkwz3jsb9sqa0hszcg"))))
+    (build-system haskell-build-system)
+    (native-inputs
+     `(("ghc-quickcheck" ,ghc-quickcheck)))
+    (home-page "http://www.chr-breitkopf.de/comp/IntervalMap";)
+    (synopsis "Containers for intervals, with efficient search")
+    (description
+     "This package provides ordered containers of intervals, with efficient
+search for all keys containing a point or overlapping an interval.  See the
+example code on the home page for a quick introduction.")
+    (license license:bsd-3)))
+
 ;;; haskell.scm ends here



reply via email to

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