summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/bloomfilter/default.nix
blob: 9d7f550c4fd4909a7d2e720388515a22cddc681e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, deepseq }:

cabal.mkDerivation (self: {
  pname = "bloomfilter";
  version = "1.2.6.10";
  sha256 = "162vp9riwf5q2l1hnw3g157fpwnw185fk41hkgyf8qaavcrz6slv";
  buildDepends = [ deepseq ];
  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
      self.stdenv.lib.maintainers.simons
    ];
  };
})