guix-patches
[Top][All Lists]
Advanced

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

[bug#50835] [PATCH v2 06/24] gnu: Add ghc-gnutls.


From: Stephen Paul Weber
Subject: [bug#50835] [PATCH v2 06/24] gnu: Add ghc-gnutls.
Date: Thu, 13 Jan 2022 21:45:28 -0500

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

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 3820964eeb..d8b1218d69 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -16204,3 +16204,28 @@ SAX parser.")
     (description
       "This library provides low-level bindings for using gsasl from Haskell.")
     (license license:gpl3)))
+
+(define-public ghc-gnutls
+  (package
+    (name "ghc-gnutls")
+    (version "0.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+               "https://hackage.haskell.org/package/gnutls/gnutls-";
+               version
+               ".tar.gz"))
+        (sha256
+          (base32 "1c5pm0d80wpgh2bkcgbvmc72agf89h8ghfnrn1m1x3fljbgzvrn0"))))
+    (build-system haskell-build-system)
+    (inputs
+      (list
+        ghc-monads-tf
+        gnutls))
+    (native-inputs (list pkg-config))
+    (home-page "https://hackage.haskell.org/package/gnutls";)
+    (synopsis "Bindings for GNU libgnutls")
+    (description
+      "This library provides Low-level bindings for using gnutls from 
Haskell.")
+    (license license:gpl3)))
-- 
2.30.2





reply via email to

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