guix-devel
[Top][All Lists]
Advanced

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

[PATCH 070/105] gnu: Add ghc-aeson.


From: Paul van der Walt
Subject: [PATCH 070/105] gnu: Add ghc-aeson.
Date: Thu, 15 Oct 2015 17:33:11 +0200

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

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 686d123..771a421 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -3267,4 +3267,41 @@ using <http://en.wikipedia.org/wiki/Scientific_notation 
scientific
 notation>.")
     (license bsd-3)))
 
+(define-public ghc-aeson
+  (package
+    (name "ghc-aeson")
+    (version "0.10.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://hackage.haskell.org/package/aeson/aeson-";
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "19kp33rfivr4d3myyr8xn803wd7p8x5nc4wb3qvlgjwgyqjaxvrz"))))
+    (build-system haskell-build-system)
+    (arguments `(#:tests? #f)) ; FIXME: testing libraries are missing.
+    (propagated-inputs
+     `(("ghc-attoparsec" ,ghc-attoparsec)
+       ("ghc-dlist" ,ghc-dlist)
+       ("ghc-mtl" ,ghc-mtl)
+       ("ghc-scientific" ,ghc-scientific)
+       ("ghc-syb" ,ghc-syb)
+       ("ghc-vector" ,ghc-vector)))
+    (inputs
+     `(("ghc-hashable" ,ghc-hashable)
+       ("ghc-text" ,ghc-text)
+       ("ghc-unordered-containers" ,ghc-unordered-containers)
+       ("ghc-hunit" ,ghc-hunit)
+       ("ghc-quickcheck" ,ghc-quickcheck)))
+    (home-page "https://github.com/bos/aeson";)
+    (synopsis "Fast JSON parsing and encoding")
+    (description
+     "A JSON parsing and encoding library for Haskell, optimized for ease of
+use and high performance.  (A note on naming: in Greek mythology, Aeson was
+the father of Jason.)")
+    (license bsd-3)))
+
 ;;; haskell.scm ends here
-- 
2.6.1




reply via email to

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