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

{ cabal, hspec, hspecExpectations, HUnit, liftedBase, monadControl
, QuickCheck, random, transformers
}:

cabal.mkDerivation (self: {
  pname = "fuzzcheck";
  version = "0.1.1";
  sha256 = "0qfr4f0b50l368b45yzwhqd4g2y1kvfrfj4hr84cdxcwdrwn9mpc";
  buildDepends = [
    liftedBase monadControl QuickCheck random transformers
  ];
  testDepends = [ hspec hspecExpectations HUnit QuickCheck ];
  meta = {
    homepage = "https://github.com/fpco/fuzzcheck";
    description = "A simple checker for stress testing monadic code";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})