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

{ cabal, deepseq, gmp, QuickCheck, tasty, tastyQuickcheck }:

cabal.mkDerivation (self: {
  pname = "bitset";
  version = "1.4.8";
  sha256 = "0h912i3wb6v8sx0c4mlp0j65l3yhpdsk3my8zhif2jls2sxns988";
  buildDepends = [ deepseq ];
  testDepends = [ QuickCheck tasty tastyQuickcheck ];
  extraLibraries = [ gmp ];
  doCheck = false;
  meta = {
    description = "A space-efficient set data structure";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})