[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#30892] [PATCH 10/37] gnu: Add ghc-crypto-cipher-tests.
From: |
rsiddharth |
Subject: |
[bug#30892] [PATCH 10/37] gnu: Add ghc-crypto-cipher-tests. |
Date: |
Wed, 21 Mar 2018 03:44:48 +0000 |
* gnu/packages/haskell-check.scm
(ghc-crypto-cipher-tests): New variable.
---
gnu/packages/haskell-check.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/haskell-check.scm b/gnu/packages/haskell-check.scm
index 9593e4c10..6b1d76931 100644
--- a/gnu/packages/haskell-check.scm
+++ b/gnu/packages/haskell-check.scm
@@ -27,6 +27,7 @@
(define-module (gnu packages haskell-check)
#:use-module (gnu packages)
#:use-module (gnu packages haskell)
+ #:use-module (gnu packages haskell-crypto)
#:use-module (guix build-system haskell)
#:use-module (guix download)
#:use-module ((guix licenses) #:prefix license:)
@@ -793,3 +794,33 @@ Haskell, inspired by the Ruby library RSpec.")
"Nanospec is a lightweight implementation of a subset of Hspec's API with
minimal dependencies.")
(license license:expat)))
+
+(define-public ghc-crypto-cipher-tests
+ (package
+ (name "ghc-crypto-cipher-tests")
+ (version "0.0.11")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://hackage.haskell.org/package/"
+ "crypto-cipher-tests-" version "/"
+ "crypto-cipher-tests-" version ".tar.gz"))
+ (sha256
+ (base32
+ "19wqignlq90qwpam01hnmmrxaxh5lkax9l1l6rlbi4a07nvp1dnz"))))
+ (build-system haskell-build-system)
+ (inputs `(("ghc-quickcheck" ,ghc-quickcheck)
+ ("ghc-mtl" ,ghc-mtl)
+ ("ghc-hunit" ,ghc-hunit)
+ ("ghc-test-framework" ,ghc-test-framework)
+ ("ghc-test-framework-quickcheck2"
,ghc-test-framework-quickcheck2)
+ ("ghc-test-framework-hunit" ,ghc-test-framework-hunit)
+ ("ghc-byteable" ,ghc-byteable)
+ ("ghc-securemem" ,ghc-securemem)
+ ("ghc-crypto-cipher-types" ,ghc-crypto-cipher-types)))
+ (home-page "https://github.com/vincenthz/hs-crypto-cipher")
+ (synopsis "Generic cryptography cipher tests for Haskell")
+ (description " This Haskell package contains generic tests for
+cryptographic ciphers, and is used by the test runners of various Haskell
+implementations of cryptographic ciphers.")
+ (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 <=
- [bug#30892] [PATCH 06/37] gnu: Add ghc-path-pieces., rsiddharth, 2018/03/20
- [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