emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#31423: closed ([PATCH 6/6] gnu: Add ghc-bytes.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#31423: closed ([PATCH 6/6] gnu: Add ghc-bytes.)
Date: Sun, 20 May 2018 20:59:01 +0000

Your message dated Sun, 20 May 2018 22:58:42 +0200
with message-id <address@hidden>
and subject line Re: [bug#31423] [PATCH 2/2] gnu: Add ghc-bytes.
has caused the debbugs.gnu.org bug report #31423,
regarding [PATCH 6/6] gnu: Add ghc-bytes.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
31423: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=31423
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH 6/6] gnu: Add ghc-bytes. Date: Fri, 11 May 2018 22:34:08 +0200
* gnu/packages/haskell.scm (ghc-bytes): New variable.
---
 gnu/packages/haskell.scm | 44 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 2429fdbe5..94a81b2fd 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -9570,4 +9570,48 @@ scenarios.")
     (inputs `(("ghc-unordered-containers" ,ghc-unordered-containers)
               ,@(package-inputs ghc-semigroupoids)))))
 
+(define-public ghc-bytes
+  (package
+   (name "ghc-bytes")
+   (version "0.15.4")
+   (source
+    (origin
+     (method url-fetch)
+     (uri
+      (string-append "https://hackage.haskell.org/package/bytes-";
+                     version ".tar.gz"))
+     (file-name (string-append name "-" version ".tar.gz"))
+     (sha256
+      (base32
+       "121x3iqlm8pghw8cd9g30cnqbl7jrdpfjxdanmqdqllajw6xivrm"))))
+   (build-system haskell-build-system)
+   (inputs `(("ghc-binary" ,ghc-binary)
+             ("ghc-bytestring" ,ghc-bytestring-builder)
+             ("ghc-transformers" ,ghc-transformers-base)
+             ("ghc-cereal" ,ghc-cereal)
+             ("ghc-containers" ,ghc-containers)
+             ("cabal-doctest" ,cabal-doctest)
+             ("ghc-doctest" ,ghc-doctest-0.13)
+             ("ghc-ghc-prim" ,ghc-primitive)
+             ("ghc-hashable" ,ghc-hashable)
+             ("ghc-lens" ,ghc-lens)
+             ("ghc-mtl" ,ghc-mtl)
+             ("ghc-reflection" ,ghc-reflection)
+             ("ghc-semigroups" ,ghc-semigroups)
+             ("ghc-semigroupoids" ,ghc-semigroupoids-5.2.2)
+             ("ghc-scientific" ,ghc-scientific)
+             ("ghc-simple-reflect" ,ghc-simple-reflect)
+             ("ghc-text" ,ghc-text)
+             ("ghc-test-framework-hunit" ,ghc-test-framework-hunit)
+             ("ghc-time" ,ghc-time-locale-compat)
+             ("ghc-tagged" ,ghc-tagged)
+             ("ghc-unordered-containers" ,ghc-unordered-containers)
+             ("ghc-void" ,ghc-void)
+             ("ghc-vector" ,ghc-vector)))
+   (synopsis "Haskell bytes: serialization between binary and cereal")
+   (description "Haskell module to share code for serialization between
+binary and cereal")
+   (home-page "https://hackage.haskell.org/package/bytes";)
+   (license license:bsd-3)))
+
 ;;; haskell.scm ends here
-- 
2.17.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#31423] [PATCH 2/2] gnu: Add ghc-bytes. Date: Sun, 20 May 2018 22:58:42 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux)
Tonton <address@hidden> skribis:

> * gnu/packages/haskell.scm (ghc-bytes): New variable.

Applied with the changes below.  We're done, thanks!

Ludo'.

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 36c3eaab7..c8fade065 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -9509,9 +9509,10 @@ address string against RFC 5322.")
              ("ghc-unordered-containers" ,ghc-unordered-containers)
              ("ghc-void" ,ghc-void)
              ("ghc-vector" ,ghc-vector)))
-   (synopsis "Haskell bytes: serialization between binary and cereal")
-   (description "Haskell module to share code for serialization between
-binary and cereal")
+   (synopsis "Serialization between @code{binary} and @code{cereal}")
+   (description "This package provides a simple compatibility shim that lets
+you work with both @code{binary} and @code{cereal} with one chunk of
+serialization code.")
    (home-page "https://hackage.haskell.org/package/bytes";)
    (license license:bsd-3)))
 

--- End Message ---

reply via email to

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