mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:23:06 +00:00
23 lines
792 B
Nix
23 lines
792 B
Nix
{ cabal, aeson, attoparsec, blazeBuilder, blazeHtml, directoryTree
|
|
, dlist, errors, filepath, hashable, MonadCatchIOTransformers, mtl
|
|
, random, text, time, transformers, unorderedContainers, vector
|
|
, xmlhtml
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "heist";
|
|
version = "0.13.0.5";
|
|
sha256 = "17lpqiidy1s6yzhh865y7dhkcv34p7pxzljpn64yyfa2pc8885dj";
|
|
buildDepends = [
|
|
aeson attoparsec blazeBuilder blazeHtml directoryTree dlist errors
|
|
filepath hashable MonadCatchIOTransformers mtl random text time
|
|
transformers 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;
|
|
};
|
|
})
|