2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, csv, filepath, HsSyck, HStringTemplate, pandoc, parsec
|
|
|
|
, split, time, utf8String, xhtml
|
2011-08-09 23:00:20 +00:00
|
|
|
}:
|
2010-09-07 12:58:07 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2010-09-07 12:58:07 +00:00
|
|
|
pname = "yst";
|
2011-08-07 19:33:49 +00:00
|
|
|
version = "0.2.4.1";
|
|
|
|
sha256 = "0y620p6kn1mky30fia63na5idppfjfmc828jcaa0ads08rmj5wgy";
|
2011-08-09 23:00:20 +00:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
csv filepath HsSyck HStringTemplate pandoc parsec split time
|
2012-02-14 17:00:37 +00:00
|
|
|
utf8String xhtml
|
2010-09-07 12:58:07 +00:00
|
|
|
];
|
|
|
|
meta = {
|
2011-08-07 19:33:49 +00:00
|
|
|
homepage = "http://github.com/jgm/yst";
|
2011-08-11 13:03:51 +00:00
|
|
|
description = "Builds a static website from templates and data in YAML or CSV files";
|
2011-08-07 19:33:49 +00:00
|
|
|
license = "GPL";
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-07 12:58:07 +00:00
|
|
|
};
|
|
|
|
})
|