2012-07-20 03:37:21 +01:00
|
|
|
{ cabal, aeson, attoparsec, blazeBuilder, blazeHtml, directoryTree
|
2012-12-10 11:43:40 +00:00
|
|
|
, dlist, errors, filepath, hashable, MonadCatchIOTransformers, mtl
|
|
|
|
, random, text, time, unorderedContainers, vector, xmlhtml
|
2012-07-20 03:37:21 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "heist";
|
2012-12-10 11:43:40 +00:00
|
|
|
version = "0.10.0";
|
|
|
|
sha256 = "0cabn1yw57qa7psmypqa20k4viis140al5zm31jlpmz599rkbi9z";
|
2012-07-20 03:37:21 +01:00
|
|
|
buildDepends = [
|
2012-12-10 11:43:40 +00:00
|
|
|
aeson attoparsec blazeBuilder blazeHtml directoryTree dlist errors
|
|
|
|
filepath hashable MonadCatchIOTransformers mtl random text time
|
|
|
|
unorderedContainers vector xmlhtml
|
2012-07-20 03:37:21 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://snapframework.com/";
|
2012-12-10 11:43:40 +00:00
|
|
|
description = "An Haskell template system supporting both HTML5 and XML";
|
2012-07-20 03:37:21 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|