2013-09-16 08:50:04 +00:00
|
|
|
{ cabal, aeson, csv, filepath, HDBC, HDBCSqlite3, HStringTemplate
|
|
|
|
, pandoc, parsec, split, text, time, unorderedContainers, xhtml
|
|
|
|
, yaml
|
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";
|
2013-09-16 08:50:04 +00:00
|
|
|
version = "0.4.0.1";
|
|
|
|
sha256 = "0j260lvprgsi9qgjwji2cc25k0dzrw94h2527rwghik8baa1ha3r";
|
2011-08-09 23:00:20 +00:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-09-16 08:50:04 +00:00
|
|
|
aeson csv filepath HDBC HDBCSqlite3 HStringTemplate pandoc parsec
|
|
|
|
split text time unorderedContainers xhtml yaml
|
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;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-09-07 12:58:07 +00:00
|
|
|
};
|
|
|
|
})
|