2013-05-30 10:01:47 +01:00
|
|
|
{ cabal, HUnit, mtl, QuickCheck, testFramework, testFrameworkHunit
|
2013-12-14 10:30:18 +00:00
|
|
|
, testFrameworkQuickcheck2, text, time
|
2013-05-30 10:01:47 +01:00
|
|
|
}:
|
2012-07-27 05:23:28 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "digestive-functors";
|
2014-01-25 15:52:42 +00:00
|
|
|
version = "0.7.0.0";
|
|
|
|
sha256 = "1zn8vn6xcmp4w39b0k33bp7zsxvnn8g8p26mch4r8ng9ldcb2y8h";
|
2013-12-14 10:30:18 +00:00
|
|
|
buildDepends = [ mtl text time ];
|
2013-05-30 10:01:47 +01:00
|
|
|
testDepends = [
|
|
|
|
HUnit mtl QuickCheck testFramework testFrameworkHunit
|
2013-12-14 10:30:18 +00:00
|
|
|
testFrameworkQuickcheck2 text time
|
2013-05-30 10:01:47 +01:00
|
|
|
];
|
2013-05-30 10:17:40 +01:00
|
|
|
jailbreak = true;
|
2012-07-27 05:23:28 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/jaspervdj/digestive-functors";
|
|
|
|
description = "A practical formlet library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|