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