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