da1f938ece
- hamlet - happstack-server - heist - highlighting-kate - xml-conduit - xmlhtml - yesod-auth - yesod-core - yesod-form
22 lines
784 B
Nix
22 lines
784 B
Nix
{ cabal, aeson, attoparsec, blazeBuilder, blazeHtml, directoryTree
|
|
, dlist, errors, filepath, hashable, MonadCatchIOTransformers, mtl
|
|
, random, text, time, unorderedContainers, vector, xmlhtml
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "heist";
|
|
version = "0.11.0.1";
|
|
sha256 = "0d5nn0kfs7hbgs4b77i8c8pq2q5hldqk08dacva7xlxvjrlxsyn6";
|
|
buildDepends = [
|
|
aeson attoparsec blazeBuilder blazeHtml directoryTree dlist errors
|
|
filepath hashable MonadCatchIOTransformers mtl random text time
|
|
unorderedContainers vector xmlhtml
|
|
];
|
|
jailbreak = true;
|
|
meta = {
|
|
homepage = "http://snapframework.com/";
|
|
description = "An Haskell template system supporting both HTML5 and XML";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|