2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, blazeBuilder, filepath, HUnit, ieee754, mtl, syb, text
|
2013-02-04 13:40:28 +01:00
|
|
|
, transformers, utf8String
|
2012-02-14 18:00:37 +01:00
|
|
|
}:
|
2011-12-02 12:46:37 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "hastache";
|
2013-02-04 13:40:28 +01:00
|
|
|
version = "0.5.0";
|
|
|
|
sha256 = "1c1pphw7qx5l5fdfqchihvp2yrwwb0ln8dfshkvd1giv8cjmbyn8";
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [
|
2013-02-04 13:40:28 +01:00
|
|
|
blazeBuilder filepath ieee754 mtl syb text transformers utf8String
|
2012-02-14 18:00:37 +01:00
|
|
|
];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ HUnit mtl syb text ];
|
2011-12-02 12:46:37 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/lymar/hastache";
|
|
|
|
description = "Haskell implementation of Mustache templates";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-02 12:46:37 +01:00
|
|
|
};
|
|
|
|
})
|