22 lines
764 B
Nix
22 lines
764 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.10.2.1";
|
|
sha256 = "14lp27vlzv6qqv325x2vqqvphw5ads5ywjqpjramv3hhd275fn3d";
|
|
buildDepends = [
|
|
aeson attoparsec blazeBuilder blazeHtml directoryTree dlist errors
|
|
filepath hashable MonadCatchIOTransformers mtl random text time
|
|
unorderedContainers vector xmlhtml
|
|
];
|
|
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;
|
|
};
|
|
})
|