nixpkgs/pkgs/development/libraries/haskell/fuzzcheck/default.nix

22 lines
692 B
Nix

# 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;
};
})