gnu: Add ghc-uri-bytestring.

* gnu/packages/haskell.scm (ghc-uri-bytestring): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
rsiddharth 2018-03-21 03:44:58 +00:00 committed by Ludovic Courtès
parent e99bd15cbb
commit 8ecefe72c1
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 34 additions and 0 deletions

View File

@ -9100,4 +9100,38 @@ between constructors is represented using an n-ary sum, and the arguments of
each constructor are represented using an n-ary product.") each constructor are represented using an n-ary product.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public ghc-uri-bytestring
(package
(name "ghc-uri-bytestring")
(version "0.3.1.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://hackage.haskell.org/package/"
"uri-bytestring-" version "/"
"uri-bytestring-" version ".tar.gz"))
(sha256
(base32
"04qjv1sgyrdg538290p9hqnvyxnahvr5cjwl8vm1rn9j0fv3ymq9"))))
(build-system haskell-build-system)
(inputs `(("ghc-attoparsec" ,ghc-attoparsec)
("ghc-fail" ,ghc-fail)
("ghc-blaze-builder" ,ghc-blaze-builder)
("ghc-th-lift-instances" ,ghc-th-lift-instances)))
(native-inputs `(("ghc-attoparsec" ,ghc-attoparsec)
("ghc-hunit" ,ghc-hunit)
("ghc-quickcheck" ,ghc-quickcheck)
("ghc-tasty" ,ghc-tasty)
("ghc-tasty-hunit" ,ghc-tasty-hunit)
("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck)
("ghc-base-compat" ,ghc-base-compat)
("ghc-quickcheck-instances" ,ghc-quickcheck-instances)
("ghc-semigroups" ,ghc-semigroups)
("ghc-generics-sop" ,ghc-generics-sop)))
(home-page "https://github.com/Soostone/uri-bytestring")
(synopsis "Haskell URI parsing as ByteStrings")
(description "This Haskell package aims to be an RFC3986 compliant URI
parser that uses ByteStrings for parsing and representing the URI data.")
(license license:bsd-3)))
;;; haskell.scm ends here ;;; haskell.scm ends here