2014-01-13 14:40:07 +00:00
|
|
|
{ cabal, hashable, QuickCheck, text, time, unorderedContainers }:
|
2013-11-21 08:42:54 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "quickcheck-instances";
|
2014-04-10 11:56:37 +01:00
|
|
|
version = "0.3.8";
|
|
|
|
sha256 = "0132a37zi1haz1aaggxa1hr421bcmxlbaa4m2l53m2rmr4z5mgkg";
|
2014-01-13 14:40:07 +00:00
|
|
|
buildDepends = [
|
|
|
|
hashable QuickCheck text time unorderedContainers
|
|
|
|
];
|
2014-03-26 08:46:23 +00:00
|
|
|
jailbreak = true;
|
2013-11-21 08:42:54 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/aslatter/qc-instances";
|
|
|
|
description = "Common quickcheck instances";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
|
|
};
|
|
|
|
})
|