2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, HUnit, mtl, testFramework, testFrameworkHunit, text }:
|
2012-07-27 05:23:28 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "digestive-functors";
|
2013-02-10 14:41:37 +00:00
|
|
|
version = "0.6.0.1";
|
|
|
|
sha256 = "1ni1hfmpz14yvgjphwz64hqhg7xbhvvqbdnapspipplvnl0rcmhi";
|
2012-07-27 05:23:28 +01:00
|
|
|
buildDepends = [ mtl text ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ HUnit mtl testFramework testFrameworkHunit text ];
|
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;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
2012-07-27 05:23:28 +01:00
|
|
|
};
|
|
|
|
})
|