nixpkgs/pkgs/development/libraries/haskell/tasty-quickcheck/default.nix
2014-03-08 11:27:39 +01:00

15 lines
477 B
Nix

{ cabal, QuickCheck, random, tagged, tasty }:
cabal.mkDerivation (self: {
pname = "tasty-quickcheck";
version = "0.8";
sha256 = "10d7chqrlp1fjphnkiykxd22g4mfp69kmihd705sxb0y0mrdfh8x";
buildDepends = [ QuickCheck random tagged tasty ];
meta = {
description = "QuickCheck support for the Tasty test framework";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})