2012-07-19 19:37:21 -07:00
|
|
|
{ cabal, aeson, attoparsec, blazeBuilder, blazeHtml, directoryTree
|
2012-12-10 03:43:40 -08:00
|
|
|
, dlist, errors, filepath, hashable, MonadCatchIOTransformers, mtl
|
|
|
|
, random, text, time, unorderedContainers, vector, xmlhtml
|
2012-07-19 19:37:21 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "heist";
|
2012-12-15 02:32:47 -08:00
|
|
|
version = "0.10.1";
|
|
|
|
sha256 = "1rwik8x2bfb0474vc1wzbqlhjgas3089g1rvphs7irfbmyki1646";
|
2012-07-19 19:37:21 -07:00
|
|
|
buildDepends = [
|
2012-12-10 03:43:40 -08:00
|
|
|
aeson attoparsec blazeBuilder blazeHtml directoryTree dlist errors
|
|
|
|
filepath hashable MonadCatchIOTransformers mtl random text time
|
|
|
|
unorderedContainers vector xmlhtml
|
2012-07-19 19:37:21 -07:00
|
|
|
];
|
2012-12-23 11:00:48 -08:00
|
|
|
jailbreak = true;
|
2012-07-19 19:37:21 -07:00
|
|
|
meta = {
|
|
|
|
homepage = "http://snapframework.com/";
|
2012-12-10 03:43:40 -08:00
|
|
|
description = "An Haskell template system supporting both HTML5 and XML";
|
2012-07-19 19:37:21 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|