summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/bloomfilter/default.nix
blob: 6eae9a30da68e49e541f213f75bab920a77f686d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, deepseq, QuickCheck, random, testFramework
, testFrameworkQuickcheck2
}:

cabal.mkDerivation (self: {
  pname = "bloomfilter";
  version = "2.0.0.0";
  sha256 = "07fif8i5rinysli1mpi92k405kvw8va7w9v9w4wd5bylb87zy77f";
  buildDepends = [ deepseq ];
  testDepends = [
    QuickCheck random testFramework testFrameworkQuickcheck2
  ];
  meta = {
    homepage = "https://github.com/bos/bloomfilter";
    description = "Pure and impure Bloom Filter implementations";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})