[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#31582] [PATCH 1/8] gnu: Add ghc-bloomfilter.
From: |
Christopher Lemmer Webber |
Subject: |
[bug#31582] [PATCH 1/8] gnu: Add ghc-bloomfilter. |
Date: |
Mon, 28 May 2018 23:08:01 -0500 |
User-agent: |
mu4e 1.0; emacs 25.3.1 |
LGTM.
Timothy Sample writes:
> * gnu/package/haskell.scm (ghc-bloomfilter): New variable.
> ---
> gnu/packages/haskell.scm | 25 +++++++++++++++++++++++++
> 1 file changed, 25 insertions(+)
>
> diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
> index c8fade065..ccb3adf15 100644
> --- a/gnu/packages/haskell.scm
> +++ b/gnu/packages/haskell.scm
> @@ -3573,6 +3573,31 @@ vector types are supported. Specific instances are
> provided for unboxed,
> boxed and storable vectors.")
> (license license:bsd-3)))
>
> +(define-public ghc-bloomfilter
> + (package
> + (name "ghc-bloomfilter")
> + (version "2.0.1.0")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "https://hackage.haskell.org/package/"
> + "bloomfilter/bloomfilter-" version ".tar.gz"))
> + (sha256
> + (base32
> + "03vrmncg1c10a2wcg5skq30m1yiknn7nwxz2gblyyfaxglshspkc"))))
> + (build-system haskell-build-system)
> + (native-inputs
> + `(("ghc-quickcheck" ,ghc-quickcheck)
> + ("ghc-random" ,ghc-random)
> + ("ghc-test-framework" ,ghc-test-framework)
> + ("ghc-test-framework-quickcheck2" ,ghc-test-framework-quickcheck2)))
> + (home-page "https://github.com/bos/bloomfilter")
> + (synopsis "Pure and impure Bloom filter implementations")
> + (description "This package provides both mutable and immutable Bloom
> +filter data types, along with a family of hash functions and an easy-to-use
> +interface.")
> + (license license:bsd-3)))
> +
> (define-public ghc-network
> (package
> (name "ghc-network")
- [bug#31582] [PATCH 0/8] git-annex, Timothy Sample, 2018/05/24
- [bug#31582] [PATCH 6/8] gnu: ghc-psqueues: Allow building with newer versions of QuickCheck., Timothy Sample, 2018/05/24
- [bug#31582] [PATCH 2/8] gnu: Add ghc-feed., Timothy Sample, 2018/05/24
- [bug#31582] [PATCH 1/8] gnu: Add ghc-bloomfilter., Timothy Sample, 2018/05/24
- [bug#31582] [PATCH 1/8] gnu: Add ghc-bloomfilter.,
Christopher Lemmer Webber <=
- [bug#31582] [PATCH 4/8] gnu: Add ghc-esqueleto., Timothy Sample, 2018/05/24
- [bug#31582] [PATCH 3/8] gnu: Add ghc-ifelse., Timothy Sample, 2018/05/24
- [bug#31582] [PATCH 7/8] gnu: Add ghc-disk-free-space., Timothy Sample, 2018/05/24
- [bug#31582] [PATCH 8/8] gnu: Add git-annex., Timothy Sample, 2018/05/24
[bug#31582] [PATCH 5/8] gnu: Add ghc-safesemaphore., Timothy Sample, 2018/05/24