2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, deepseq, filepath, mtl, parsec, syb, sybWithClass, text
|
|
|
|
, time, utf8String
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
2009-07-18 08:25:28 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-18 08:25:28 -07:00
|
|
|
pname = "HStringTemplate";
|
2012-01-24 07:06:03 -08:00
|
|
|
version = "0.6.8";
|
|
|
|
sha256 = "1fybvb3v2b786n1hfzcvyanj3yfm5j8z4fm48vaskcggawh6rlkr";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2012-02-16 06:05:41 -08:00
|
|
|
deepseq filepath mtl parsec syb sybWithClass text time utf8String
|
2011-08-09 16:00:20 -07:00
|
|
|
];
|
2009-07-18 08:25:28 -07:00
|
|
|
meta = {
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "StringTemplate implementation in Haskell";
|
2011-08-09 16:00:20 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-18 08:25:28 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|