[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#30892] [PATCH 06/37] gnu: Add ghc-path-pieces.
From: |
rsiddharth |
Subject: |
[bug#30892] [PATCH 06/37] gnu: Add ghc-path-pieces. |
Date: |
Wed, 21 Mar 2018 03:44:44 +0000 |
* gnu/packages/haskell-web.scm (ghc-path-pieces): New variable.
---
gnu/packages/haskell-web.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm
index 1190bc63a..edfb43c08 100644
--- a/gnu/packages/haskell-web.scm
+++ b/gnu/packages/haskell-web.scm
@@ -901,3 +901,27 @@ of a JSON value into a @code{Data.Aeson.Value}.")
(synopsis "Unicode aware uri-encoding")
(description "Unicode aware uri-encoding for Haskell.")
(license license:bsd-3)))
+
+(define-public ghc-path-pieces
+ (package
+ (name "ghc-path-pieces")
+ (version "0.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://hackage.haskell.org/package/"
+ "path-pieces-" version "/"
+ "path-pieces-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0vx3sivcsld76058925hym2j6hm3g71f0qjr7v59f1g2afgx82q8"))))
+ (build-system haskell-build-system)
+ (inputs `(("ghc-text" ,ghc-text)))
+ (native-inputs `(("ghc-hunit" ,ghc-hunit)
+ ("ghc-hspec" ,ghc-hspec)
+ ("ghc-quickcheck" ,ghc-quickcheck)))
+ (home-page "https://github.com/yesodweb/path-pieces")
+ (synopsis "Used in Yesod to automatically marshall data in the request
path")
+ (description "This Haskell package provides two typeclasses for converting
+Haskell data types to and from route pieces.")
+ (license license:bsd-3)))
--
2.16.2
- [bug#30892] [PATCH 00/37] Add ghc-yesod and its dependencies., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 01/37] gnu: ghc-chunked-data: Update inputs., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 12/37] gnu: Add ghc-crypto-random., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 14/37] gnu: Add ghc-clientsession., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 13/37] gnu: Add ghc-cprng-aes., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 02/37] gnu: Add ghc-stm-chans., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 03/37] gnu: Add ghc-monad-loops., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 10/37] gnu: Add ghc-crypto-cipher-tests., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 06/37] gnu: Add ghc-path-pieces.,
rsiddharth <=
- [bug#30892] [PATCH 04/37] gnu: Add ghc-monad-logger., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 08/37] gnu: Add ghc-securemem., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 05/37] gnu: Add ghc-shakespeare., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 11/37] gnu: Add ghc-cipher-aes., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 07/37] gnu: Add ghc-skein., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 09/37] gnu: Add ghc-crypto-cipher-types., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 15/37] gnu: Add ghc-yesod-core., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 16/37] gnu: Add ghc-resource-pool., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 18/37] gnu: Add ghc-th-lift-instances., rsiddharth, 2018/03/20
- [bug#30892] [PATCH 22/37] gnu: Add ghc-http-api-data., rsiddharth, 2018/03/20