2012-07-27 05:23:28 +01:00
|
|
|
{ cabal, mtl, text }:
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/jaspervdj/digestive-functors";
|
|
|
|
description = "A practical formlet library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|