2013-02-24 21:10:08 +00:00
|
|
|
{ cabal, mtl, QuickCheck, random, syb }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "ChasingBottoms";
|
2013-10-16 16:16:32 +01:00
|
|
|
version = "1.3.0.7";
|
|
|
|
sha256 = "0g1bx6d2mi27qsb4bxvby50g39fm56gyi2658fyjiq1gamy50ypa";
|
2013-02-24 21:10:08 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ mtl QuickCheck random syb ];
|
|
|
|
meta = {
|
|
|
|
description = "For testing partial and infinite values";
|
2013-05-16 12:02:01 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2013-02-24 21:10:08 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|