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