3e10ee5c92
* haskell-dataenc: updated to version 0.14.0.2 * haskell-fclabels: updated to version 1.0.1 svn path=/nixpkgs/trunk/; revision=28574
23 lines
675 B
Nix
23 lines
675 B
Nix
{ cabal, deepseq, extensibleExceptions, QuickCheck, random
|
|
, testFramework
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "test-framework-quickcheck";
|
|
version = "0.2.7";
|
|
sha256 = "065nazli8vh9dz8xi71gwzlwy81anfd471jhz6hv3m893cc9vvx8";
|
|
buildDepends = [
|
|
deepseq extensibleExceptions QuickCheck random testFramework
|
|
];
|
|
meta = {
|
|
homepage = "http://batterseapower.github.com/test-framework/";
|
|
description = "QuickCheck support for the test-framework package";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|