guix-devel
[Top][All Lists]
Advanced

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

[PATCH 11/21] gnu: Add ghc-regex-compat.


From: Paul van der Walt
Subject: [PATCH 11/21] gnu: Add ghc-regex-compat.
Date: Fri, 16 Oct 2015 15:11:55 +0200

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

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index e75af99..1032133 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -1729,6 +1729,31 @@ IPv4 and IPv6 are supported.")
      "The posix regex backend for regex-base.")
     (license bsd-3)))
 
+(define-public ghc-regex-compat
+  (package
+    (name "ghc-regex-compat")
+    (version "0.95.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://hackage.haskell.org/package/regex-compat/regex-compat-";
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "0fwmima3f04p9y4h3c23493n1xj629ia2dxaisqm6rynljjv2z6m"))))
+    (build-system haskell-build-system)
+    (inputs
+     `(("ghc-regex-base" ,ghc-regex-base)
+       ("ghc-regex-posix" ,ghc-regex-posix)))
+    (home-page
+     "http://sourceforge.net/projects/lazy-regex";)
+    (synopsis "Replaces/Enhances Text.Regex")
+    (description
+     "One module layer over regex-posix to replace Text.Regex.")
+    (license bsd-3)))
+
 (define-public ghc-regex-tdfa-rc
   (package
     (name "ghc-regex-tdfa-rc")
-- 
2.6.1




reply via email to

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